What problem does it solve? Turning an existing markdown draft into a polished, shareable .docx file is tedious: plain pandoc output lacks table borders, code styling, and proper margins, and mermaid diagrams do not render at all. This Skill packages markdown into a styled Word document while keeping the markdown as the canonical source. ## Core Features & Use Cases - Full-fidelity conversion: Uses pypandoc to convert markdown tables, lists, code blocks, links, and headings into .docx, with a python-docx fallback script when pandoc is unavailable. - Styling pass: A post-processing script adds grid borders and shaded bold header rows to tables, grey backgrounds with Consolas font to code blocks, and configurable page margins. - Mermaid diagram handling: Pre-renders mermaid blocks to PNG via mermaid-cli and swaps image references into a temporary markdown before conversion. - Use Case: You finished a technical spec in markdown and a stakeholder needs it in Word format. Run the conversion and styling pipeline to produce a formatted .docx with real tables and styled code, without touching the prose. ## Quick Start Convert my markdown draft report.md into a styled Word document with tables and code blocks formatted, keeping the markdown file as the source of truth.