Install
openclaw skills install cn-markdown-to-htmlConvert Markdown to HTML with basic styling. Support headers, bold, italic, links, code blocks. Pure Python standard library, no API key required.
openclaw skills install cn-markdown-to-htmlConvert Markdown files to HTML.
| Markdown | HTML |
|---|---|
| # Header | <h1> |
| ## Header | <h2> |
| ### Header | <h3> |
| bold | <strong>bold</strong> |
| italic | <em>italic</em> |
code | <code>code</code> |
| text | <a href="url">text</a> |
python3 scripts/md_to_html.py --file readme.md
Input (readme.md):
# My Project
This is **bold** and *italic* text.
[Visit example.com](https://example.com)
Output: Complete HTML document with proper formatting.