Skip to content

Commit

Permalink
- [#] update README
Browse files Browse the repository at this point in the history
  • Loading branch information
suntong committed Jun 15, 2023
1 parent fbdda71 commit ec1b5c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.e.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

![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)
![html-to-markdown logo](https://github.com/JohannesKaufmann/html-to-markdown/raw/master/logo_five_years.png)


## Usage
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@
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.

![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)
![html-to-markdown logo](https://github.com/JohannesKaufmann/html-to-markdown/raw/master/logo_five_years.png)


## Usage

### $ 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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions html2md_main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down

0 comments on commit ec1b5c2

Please sign in to comment.