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.
下載技能 ZIP
在 Claude 中上傳
前往 設定 → 功能 → 技能 → 上傳技能
開啟並開始使用
測試它
正在使用「baoyu-markdown-to-html」。 # Hello World This is a test.
預期結果:
- HTML file: Hello.html
- Contains styled heading and paragraph tags
- Inline CSS for WeChat compatibility
正在使用「baoyu-markdown-to-html」。 Code block: ```javascript console.log('test'); ```
預期結果:
- HTML file with syntax-highlighted code
- Line numbers in code blocks
- Theme-appropriate code styling
正在使用「baoyu-markdown-to-html」。 Math: $E = mc^2$
預期結果:
- HTML file with rendered KaTeX math
- Equation properly formatted
- MathJax/KaTeX CSS embedded
安全審計
低風險This 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.
中風險問題 (2)
低風險問題 (2)
風險因素
⚙️ 外部命令 (1)
📁 檔案系統存取 (6)
🌐 網路存取 (1)
🔑 環境變數 (2)
品質評分
你能建構什麼
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.
試試這些提示
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
最佳實務
- 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
避免
- 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