What survives the trip from Word to Markdown — and what doesn’t
Markdown is deliberately a smaller language than Word. That’s its virtue: fewer knobs means every renderer agrees on the result. But it makes conversion a translation with loss, and knowing the loss profile ahead of time saves review effort. Comfortably surviving: headings, emphasis, links, simple tables, nested lists, and block quotes. Silently flattened: font choices, colors, text alignment, merged table cells, and anything living in a text box. The mental model that predicts the output best: if GitHub’s editor can’t express it, it won’t be there.
The most common surprise is centered or right-aligned text arriving left-aligned. That’s not a bug — Markdown has no alignment syntax. If a document leans heavily on visual arrangement rather than structure, it’s a sign the content wants to stay a document (keep it DOCX or convert to PDF) rather than become source text.
The docs-as-code migration, done in the right order
Teams usually reach for this converter mid-migration — moving a wiki’s worth of Word files into a Git-backed docs site. The order of operations that produces the least cleanup:
- Inventory and prune first. Half of most Word documentation folders is obsolete. Migrating garbage produces versioned garbage.
- Convert, then normalize headings. Verify each file starts at a single
#and nests without skipping levels — Word documents drift into “Heading 3 everywhere” over years of editing, and static site generators build navigation from the hierarchy. - Handle images as a batch. Collect them per document (a DOCX is a ZIP — the images sit in
word/media/), commit them to an assets folder, and fix the paths in one editor session. - Commit the raw conversion before editing. A “converted verbatim” commit followed by “editorial cleanup” commits keeps the machine’s work distinguishable from the humans’ — invaluable when someone later asks whether the source document really said that.
Round-tripping and the tools around this one
Conversion isn’t a one-way door. When a Markdown document needs to go back to reviewers who live in Word, Markdown to Word rebuilds a native .docx with real heading styles. And when the goal is publishing rather than storage, Markdown to PDF skips the intermediate formats entirely. The pattern the three tools share: keep the source of truth in the simplest format that holds the structure, and generate the heavier formats on demand.