diff options
| author | Tong Sun <[email protected]> | 2023-06-15 17:55:47 -0400 |
|---|---|---|
| committer | Tong Sun <[email protected]> | 2023-06-15 17:55:47 -0400 |
| commit | ec1b5c2d11c93a5f478a27055b02620a5fb29c33 (patch) | |
| tree | 78a1b2b1feea186f7f295e7c67386a483cc96c75 | |
| parent | Merge pull request #17 from suntong/all-contributors/add-ImportTaste (diff) | |
| download | html2md-ec1b5c2d11c93a5f478a27055b02620a5fb29c33.tar.xz html2md-ec1b5c2d11c93a5f478a27055b02620a5fb29c33.zip | |
| -rw-r--r-- | README.e.md | 2 | ||||
| -rw-r--r-- | README.md | 5 | ||||
| -rw-r--r-- | html2md_main.go | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/README.e.md b/README.e.md index 7e3a7da..1a830c9 100644 --- a/README.e.md +++ b/README.e.md @@ -15,7 +15,7 @@ The `{{.Name}}` makes use of `github.com/JohannesKaufmann/html-to-markdown` 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. - + ## Usage @@ -38,7 +38,7 @@ The `html2md` makes use of `github.com/JohannesKaufmann/html-to-markdown` 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. - + ## Usage @@ -46,7 +46,7 @@ to convert HTML into Markdown, which is using an [HTML Parser](https://github.co ### $ html2md ```sh HTML to Markdown -Version 1.1.0 built on 2023-05-03 +Version 1.1.1 built on 2023-06-15 Copyright (C) 2020-2023, Tong Sun HTML to Markdown converter on command line @@ -75,6 +75,7 @@ Options: --opt-link-reference-style Option LinkReferenceStyle --opt-escape-mode Option EscapeMode + --plugin-br-to-newline Plugin BrToNewline -A, --plugin-conf-attachment Plugin ConfluenceAttachments -C, --plugin-conf-code Plugin ConfluenceCodeBlock -F, --plugin-frontmatter Plugin FrontMatter diff --git a/html2md_main.go b/html2md_main.go index fce0d56..4995e6c 100644 --- a/html2md_main.go +++ b/html2md_main.go @@ -23,8 +23,8 @@ import ( var ( progname = "html2md" - version = "1.1.0" - date = "2023-05-03" + version = "1.1.1" + date = "2023-06-15" rootArgv *rootT ) |