llmdoc

Guides & tutorials.

Practical writeups on the conversion workflows we ship for. Skim, bookmark, ship.

Workflow5 min readConvert ChatGPT conversations to WordCopy from ChatGPT, paste, export DOCX. Headings, lists, code, and equations all carry over.Workflow5 min readConvert Claude AI to WordAnthropic's Claude (Sonnet, Opus, Haiku) emits clean GFM markdown — perfect input for our DOCX exporter.Workflow5 min readConvert Gemini to WordGemini exports to Google Docs, not .docx. When you need a real Word file with editable equations, copy the Markdown and convert.Workflow4 min readConvert Grok to WordGrok has no document export at all — but every reply is Markdown underneath. Copy, paste, download a real .docx.Workflow4 min readConvert DeepSeek to WordThe most math-heavy assistant has no export button. Turn R1 answers into Word documents with every equation editable.Basics3 min readHow to open a .md fileWhat a Markdown file is, the fastest way to read one rendered (no install), and every fallback for Windows, Mac, and mobile.Math8 min readLaTeX math in markdownInline and block formulas, matrices, Greek letters — and the recent fix that keeps PDF fraction bars in the right place.Reference7 min readPDF export & printA4, smart page breaks, KaTeX via SVG foreignObject, syntax-highlighted code, CORS-inlined images. What works, what doesn't.Productivity6 min readBatch converting many filesDrop up to 20 markdown files at once. Concurrency, ordering, and the gotchas you only learn after the third try.

Quick tips

Use the AI's copy button

ChatGPT, Claude, and Gemini all expose a copy button that preserves the underlying markdown — code fences, lists, and LaTeX included. Manual text selection loses all of it.

Already have a .md file? Upload it

The converter's Upload .md button (and the drag-and-drop zone on /markdown-to-word) accepts .md, .markdown, and .txt files — the file opens straight into the live preview. Up to 20 files at once go through /batch.

Math survives every format

Inline `$x$` and block `$$ ... $$` render via KaTeX in HTML/PDF and translate to native Office Math (OMML) in DOCX. Equations stay editable in Word.

Batch up to 20 at a time

Drag a folder of markdown files onto /batch. Three convert in parallel, the rest queue, everything bundles into one ZIP.

Stays mostly local

PDF, HTML, Markdown, and the live preview run entirely in your browser. DOCX export POSTs the markdown to our Pandoc route for higher-fidelity Word output — temp files only, deleted immediately, no logging of content. Set-it-and-forget-it for sensitive docs: the local-only DOCX fallback always works too.

Refresh-safe

Your current draft is mirrored to localStorage and restored on next visit. The History panel keeps the last few conversions for quick re-export.

DOCX has two paths

When the server-side Pandoc route is reachable, exports go through Pandoc for highest fidelity. Otherwise the client-side `docx` package handles it. Both are good — Pandoc just wins on tricky edge cases.