diff options
Diffstat (limited to 'README.e.md')
| -rw-r--r-- | README.e.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/README.e.md b/README.e.md index 1a830c9..d338390 100644 --- a/README.e.md +++ b/README.e.md @@ -12,7 +12,7 @@ ## {{.Name}} - HTML to Markdown converter -The `{{.Name}}` makes use of `github.com/JohannesKaufmann/html-to-markdown` +The `{{.Name}}` makes use of https://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.  @@ -62,6 +62,11 @@ $ echo '<ul><li><input type=checkbox checked>Checked!</li><li><input type=checkb $ echo 'Only <del>blue ones</del> <s> left</s>' | html2md -i --plugin-strikethrough Only ~~blue ones~~ ~~left~~ + +$ echo '<p>Lorem Ipsum:</p><p style="text-align: center;"><iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/PifPVQOFyZI" title="YouTube video player" width="560"></iframe></p>' | ./html2md -i --plugin-youtube +Lorem Ipsum: + +[](https://www.youtube.com/watch?v=PifPVQOFyZI) ``` #### Testing the new table plugins |