Man page - html-to-markdown(1)
Packages contains this manual
Package: php-league-html-to-markdown
apt-get install php-league-html-to-markdown
apt-get install php-league-html-to-markdown
Manuals in package:
Documentations in package:
Manual
HTML-TO-MARKDOWN
NAMESYNOPSIS
DESCRIPTION
OPTIONS
EXAMPLES
NAME
html-to-markdown - convert HTML to Markdown
SYNOPSIS
html-to-markdown [ OPTIONS ] [ FILE ]
DESCRIPTION
If no file is given, input will be read from STDIN
OPTIONS
-h , --help Shows help and usage information
EXAMPLES
Converting a file named document.html:
html-to-markdown document.html
Converting a file and saving its output:
html-to-markdown document.html > output.md
Converting from STDIN:
echo -e ’<h1>Hello World!</h1>’ | html-to-markdown
Converting from STDIN and saving the output:
echo -e ’<h1>Hello World!</h1>’ | html-to-markdown > output.md