Our review
Converts Markdown lab reports to Word (.docx) documents with proper formatting and academic styling.
Strengths
- Dedicated script with automatic preprocessing (removes alt text and horizontal rules)
- Handles relative image paths and resizes them appropriately
- Includes a validation checklist after conversion
Limitations
- Requires Pandoc installation (automated by script but not always available)
- Complex formatting (nested tables, math) may be altered
- Custom reference document (template) may require manual setup
When you need to submit a lab report in .docx format with clean academic layout and proper styling.
If you only need a quick plain-text conversion or the document contains no special formatting.
Security analysis
SafeThe skill only provides instructions for local file conversion using standard tools like pandoc and Python scripts. There are no potentially destructive commands, network calls, or data exfiltration risks.
No concerns found
Examples
Convert my Lab_Answer.md file to a Word document with proper formatting, using the conversion script.I need to submit my lab report as a .docx. Please convert the markdown file and ensure images and code blocks are preserved.Convert multiple lab report .md files to .docx, applying academic template and table of contents.name: learning-md_to_docx description: Convert markdown lab reports to Word documents with proper formatting. Use when (1) user needs to submit .docx, (2) mentions "转docx" or "convert to word", (3) preparing lab submission.
Learning Markdown to DOCX Converter
Objectives
- Convert .md files to .docx with proper formatting
- Preserve images, tables, and code blocks
- Apply academic document styling
Instructions
1. Recommended: Use the Conversion Script (Best Practice)
Always use the script for lab reports:
python .shared/skills/learning-md_to_docx/scripts/convert_md_to_docx.py Lab_Answer.md
The script automatically:
- Removes image alt text (prevents "Step 1 Code", "Step 1 Result" from appearing in Word)
- Removes horizontal rules
---(prevents visible lines in Word) - Handles relative image paths
- Provides validation checklist
2. Pre-process Markdown (if using pandoc directly)
Remove horizontal rules before conversion:
- Horizontal rules
---in markdown become visible lines in Word - Remove all
---separators if clean layout is desired - Alternative: Use blank lines for section spacing
Remove image alt text manually:
- Change
to - Alt text appears as visible captions below images in Word
3. Direct Pandoc Command (if script unavailable)
Basic command:
pandoc input.md -o output.docx --resource-path="./images"
Alternative: Python script with python-docx
from docx import Document
from docx.shared import Inches, Pt
import markdown
2. Formatting Requirements
Document structure:
- Title: Bold, 16pt
- Student info: Name, ID, Section, Date
- Headings: Hierarchical (Heading 1, 2, 3)
- Body text: 11pt, single spacing
- Code blocks: Courier New, 10pt, gray background
- Images: Centered, with captions
Image handling:
- Convert relative paths to absolute before processing
- Resize images to fit page width (max 6 inches)
- Control captions via alt text:
becomes figure caption - Use empty alt text
to avoid automatic captions - Maintain aspect ratio
3. Conversion Steps
-
Pre-process markdown:
- Remove horizontal rules
---if clean layout is needed - Resolve relative image paths
- Clean up formatting inconsistencies
- Verify all images exist
- Remove horizontal rules
-
Convert to DOCX:
- Use pandoc or python-docx
- Apply formatting rules
- Insert images with proper sizing
-
Post-process DOCX:
- Verify all images display correctly
- Check page breaks
- Ensure consistent formatting
- Add page numbers if required
4. Pandoc Command Examples
Basic conversion:
pandoc Lab1_Template.md -o Lab1.docx
With custom styling:
pandoc Lab1_Template.md -o Lab1.docx \
--reference-doc=academic_template.docx \
--toc \
--number-sections
With metadata:
pandoc Lab1_Template.md -o Lab1.docx \
-M title="Lab 1: Zipf's Law" \
-M author="Student Name" \
-M date="2026-01-20"
A ready-to-use script is available: scripts/convert_md_to_docx.py
Usage:
# Basic conversion
python scripts/convert_md_to_docx.py Lab1_Template.md
# Specify output filename
python scripts/convert_md_to_docx.py Lab1_Template.md Lab1.docx
# The script will:
# - Auto-download pandoc if needed
# - Handle relative image paths
# - Auto-remove image alt text (prevents captions in Word)
# - Provide validation checklist
Features:
- Automatic pandoc installation
- Relative path resolution for images
- Auto-preprocessing:
- Removes image alt text (e.g.,
→) - Removes horizontal rules
---(prevents visible lines in Word) - This prevents alt text from appearing as captions below images in Word
- Removes image alt text (e.g.,
- Error handling and troubleshooting tips
- Validation checklist after conversion
Validation
Check the generated .docx:
- [ ] All images display correctly
- [ ] Headings are properly formatted
- [ ] Code blocks are readable
- [ ] Tables are formatted correctly
- [ ] Page layout is appropriate
- [ ] File size is reasonable (<10MB)
Common Issues
- Missing images: Ensure all image paths are resolved before conversion
- Broken formatting: Use
--reference-docwith proper template - Large file size: Compress images before conversion
- Chinese characters: Ensure UTF-8 encoding:
pandoc -f markdown+east_asian_line_breaks - Unwanted text below images: Image alt text appears as captions in Word. Use empty alt text
![]()or short text![Code]()to avoid verbose captions
Installation
Pandoc:
# Windows (using chocolatey)
choco install pandoc
# Or download from: https://pandoc.org/installing.html
Python packages:
pip install pypandoc python-docx
API Documentation Generator
Documentation
Automatically generates OpenAPI/Swagger API documentation.
Technical Writer
Documentation
Writes clear technical documentation following top style guides.
Pivot Decision Framework
Documentation
Documents a strategic pivot or persevere decision with evidence, analysis, and rationale. Use when evaluating whether to change direction on a product, feature, or strategy based on market feedback.