Skip to content

Commit ec1b5c2

Browse files
committed
- [#] update README
1 parent fbdda71 commit ec1b5c2

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

README.e.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
The `{{.Name}}` makes use of `github.com/JohannesKaufmann/html-to-markdown`
1616
to convert HTML into Markdown, which is using an [HTML Parser](https://github.com/PuerkitoBio/goquery) to avoid the use of `regexp` as much as possible, which can prevent some [weird cases](https://stackoverflow.com/a/1732454) and allows it to be used for cases where the input is totally unknown.
1717

18-
![gopher stading on top of a machine that converts a box of html to blocks of markdown](https://github.com/JohannesKaufmann/html-to-markdown/raw/master/logo.png)
18+
![html-to-markdown logo](https://github.com/JohannesKaufmann/html-to-markdown/raw/master/logo_five_years.png)
1919

2020

2121
## Usage

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@
3838
The `html2md` makes use of `github.com/JohannesKaufmann/html-to-markdown`
3939
to convert HTML into Markdown, which is using an [HTML Parser](https://github.com/PuerkitoBio/goquery) to avoid the use of `regexp` as much as possible, which can prevent some [weird cases](https://stackoverflow.com/a/1732454) and allows it to be used for cases where the input is totally unknown.
4040

41-
![gopher stading on top of a machine that converts a box of html to blocks of markdown](https://github.com/JohannesKaufmann/html-to-markdown/raw/master/logo.png)
41+
![html-to-markdown logo](https://github.com/JohannesKaufmann/html-to-markdown/raw/master/logo_five_years.png)
4242

4343

4444
## Usage
4545

4646
### $ html2md
4747
```sh
4848
HTML to Markdown
49-
Version 1.1.0 built on 2023-05-03
49+
Version 1.1.1 built on 2023-06-15
5050
Copyright (C) 2020-2023, Tong Sun
5151

5252
HTML to Markdown converter on command line
@@ -75,6 +75,7 @@ Options:
7575
--opt-link-reference-style Option LinkReferenceStyle
7676
--opt-escape-mode Option EscapeMode
7777

78+
--plugin-br-to-newline Plugin BrToNewline
7879
-A, --plugin-conf-attachment Plugin ConfluenceAttachments
7980
-C, --plugin-conf-code Plugin ConfluenceCodeBlock
8081
-F, --plugin-frontmatter Plugin FrontMatter

html2md_main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323

2424
var (
2525
progname = "html2md"
26-
version = "1.1.0"
27-
date = "2023-05-03"
26+
version = "1.1.1"
27+
date = "2023-06-15"
2828

2929
rootArgv *rootT
3030
)

0 commit comments

Comments
 (0)