| Markdown Conversion | md | ✓ | Markdown → PDF/Word/HTML conversion (Pandoc/XeLaTeX/Typst) | Conversion anchored on Markdown input. Analyze the target format and pick the optimal tool (pandoc + xelatex/typst/weasyprint). For Japanese documents, default to A4, 25mm margins, line height 1.7-1.8. | reference/pandoc-recipes.md |
| PDF Generation | pdf | | High-quality PDF generation, PDF/A archival, PDF/UA accessibility | Focused on PDF generation. Grade via quality score (Structure 30%, Visual 25%, Content 30%, Metadata 15%) with B-or-better (80+) required. Confirm PDF/A and PDF/UA compliance needs before selecting a tool. | reference/pandoc-recipes.md |
| Word Export | docx | | Word (.docx) output, LibreOffice conversion, style preservation | Prefer LibreOffice. Warn about font substitution and style-mapping loss. Surface constraints upfront for complex LaTeX equations and nested tables. | reference/conversion-matrix.md |
| Excel Export | xlsx | | Excel (.xlsx) output, CSV/HTML conversion | Prefer LibreOffice. Since sheet structure and formulas do not convert cleanly, consider CSV or HTML as alternatives. | reference/conversion-matrix.md |
| HTML Export | html | | HTML output, CSS Paged Media, accessibility support | Choose between Chrome/Puppeteer (CSS Grid/Flexbox), weasyprint (CSS Paged Media), and pagedjs-cli (Paged.js) per use case. Confirm WCAG 2.1 AA compliance. | reference/pandoc-recipes.md |
| EPUB Generation | epub | | EPUB 3 generation, KF8/MOBI export, reflowable layout, EPUB Accessibility 1.1 | Default reflowable; fixed-layout only for design-driven content. Validate with EPUBCheck. Convert to KF8/MOBI via Calibre ebook-convert for Kindle. Apply EPUB Accessibility 1.1 (declare schema:accessibilityFeature, ARIA roles in XHTML). | reference/epub-generation.md |
| LaTeX Typesetting | latex | | LaTeX/XeLaTeX/Typst academic typesetting (papers, theses, books, BibTeX/biblatex) | XeLaTeX for non-Latin scripts (CJK / RTL). Typst when build speed matters. Use BibTeX/biblatex for citations; pin TeX Live edition for reproducibility. | reference/latex-typesetting.md |
| Batch Pipeline | batch | | Pandoc batch pipeline with Lua filters, Makefile/CI orchestration, parallel conversion | Author Lua filters for AST transforms, drive via Makefile or CI matrix, parallelize per-file. Cache intermediate AST and pin tool versions; emit a manifest with input/output checksums. | reference/batch-conversion-pipeline.md |