baoyu-markdown-to-html
Convert Markdown to Styled HTML
Transforms plain Markdown files into beautifully styled HTML with WeChat-optimized themes, code highlighting, math equations, and diagram support.
Download the skill ZIP
Upload in Claude
Go to Settings → Capabilities → Skills → Upload skill
Toggle on and start using
Test it
Using "baoyu-markdown-to-html". # Hello World This is a test.
Expected outcome:
- HTML file: Hello.html
- Contains styled heading and paragraph tags
- Inline CSS for WeChat compatibility
Using "baoyu-markdown-to-html". Code block: ```javascript console.log('test'); ```
Expected outcome:
- HTML file with syntax-highlighted code
- Line numbers in code blocks
- Theme-appropriate code styling
Using "baoyu-markdown-to-html". Math: $E = mc^2$
Expected outcome:
- HTML file with rendered KaTeX math
- Equation properly formatted
- MathJax/KaTeX CSS embedded
Security Audit
Low RiskThis is a legitimate markdown-to-HTML converter skill. The static findings are false positives - external commands invoke the rendering script and external tools (PlantUML, Ruby) for markdown extensions, network calls fetch external resources needed for rendering (images, diagram servers), and filesystem operations are standard read/write for file conversion. No malicious intent or data exfiltration detected.
Medium Risk Issues (2)
Low Risk Issues (2)
Risk Factors
⚙️ External commands (1)
📁 Filesystem access (6)
🌐 Network access (1)
🔑 Env variables (2)
Quality Score
What You Can Build
WeChat Article Publishing
Convert Markdown articles to WeChat-compatible HTML for publishing to Official Accounts with styled formatting and code highlighting.
Documentation Conversion
Transform Markdown documentation files into standalone HTML with beautiful styling and diagram support.
Blog Post Export
Convert Markdown blog posts to styled HTML with math equations and syntax-highlighted code blocks.
Try These Prompts
Convert the file README.md to HTML using the default theme
Convert article.md to HTML with the grace theme, optimized for WeChat publication
Convert tutorial.md to HTML with the simple theme, include code block syntax highlighting
Convert doc.md to HTML using the default theme and keep the original title in the output
Best Practices
- Use the default theme for WeChat articles as it's optimized for that platform
- Keep markdown files in the same directory as referenced images for proper embedding
- Test the output in WeChat editor before publishing to catch formatting issues
Avoid
- Do not use this for converting sensitive documents - HTML is not encrypted
- Avoid converting very large markdown files as processing may be slow
- Do not expect perfect rendering of complex JavaScript-heavy markdown extensions