Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 601 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 601 Bytes

html2md

HTML to Markdown converter

Installation

pip install -U html2md

Usage

As a command line tool:

# To convert a file.
html2md examples/hello.html

# To convert from stdin.
cat examples/hello.html | html2md

From a Python script:

import html2md

html = '''
<h1>Header</h1>
<b><i>Hello</i></b> from <code>html2md</code>
<pre class="py"><code>
print('Hello')
</code></pre>
'''

md = html2md.convert(html)
print(md)

Contributing

Contributions are welcome! For instructions on how to contribute, please check the Contribution guide.