Convert a Word DOCX to Markdown in Your Browser
Turn a Word brief into a README or a wiki page. Review what survives the trip to Markdown, what is dropped on purpose, and how to prepare the document for a clean result.
The .docx is unpacked and converted in your browser. The file is never sent to FindUtils or anywhere else — you can confirm it in your browser's network panel while converting.
A .docx file is a zip archive of XML, and the part that matters for Markdown is the document body: a sequence of paragraphs, each with a style, each holding runs of text with formatting, plus tables and hyperlinks. This converter reads that body in the browser and writes semantic HTML from it — Heading styles become heading elements, list paragraphs become lists, hyperlinks become links — and then writes Markdown from the HTML using the same converter the Site to Markdown page uses, which is what gives tables a pipe-table form rather than a flattened paragraph.
What survives is what Markdown can express: headings, paragraphs, bold, italic, links, bulleted and numbered lists, tables, and images if you ask for them. What does not survive is what Markdown cannot: fonts, colours, sizes, columns, page breaks, headers and footers, tracked changes and comments. That is a feature of the destination, not a limitation of the converter, and the page says so rather than promising a print-faithful copy.
The file is checked before anything heavy runs. A Word document in the current format starts as a zip; a legacy .doc and a password-protected .docx both start as an OLE compound file, and both get the same clear message, because the fix for both is the same: save as an unprotected .docx. Everything runs in the browser. The document is never uploaded.
Pandoc does this conversion well and does fifty others, at the cost of an install and a command line. Online converters upload the document, which for a contract, a policy draft or an unreleased spec is the thing that must not happen. This page keeps the job to one drop and keeps the file in the tab, and it is the reverse of the Markdown to Word page, so a document can make the round trip without leaving FindUtils.