Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
Version History
- Added an explicit license entry (`Apache-2.0`) in the skill metadata. - Updated metadata to include `author: bowenliang123`. - Minor adjustments to formatting and links in SKILL.md. - No changes to functionality or files detected.
What This Skill Does
Converts Markdown files to a wide range of formats: DOCX, PPTX, XLSX, PDF, PNG, HTML, IPYNB, CSV, JSON, XML, and LaTeX. Also extracts fenced code blocks into individual source files by language. Works via a command-line tool installed as a Python package.
One tool handles conversion to 13+ formats without needing separate converters or online services for each target format.
When to use it
- Turning AI-generated markdown reports into Word documents
- Exporting markdown tables to Excel for data sharing
- Converting a markdown slide deck to PowerPoint
- Extracting code blocks from markdown into runnable script files
- Producing a PDF from markdown documentation for distribution
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: Convert my report.md to a Word document and save it to /output/report.docx
- 1Identifies the requested conversion format as DOCX
- 2Calls md_to_docx with the input file path and output path
- 3Runs: markdown-exporter md_to_docx /path/report.md /output/report.docx
- 4Confirms the output file was created successfully
/output/report.docx created as a formatted Word document