How to Paste a Word Document Into Markdown
Copy from Word, paste into the tool, get Markdown. The clipboard already carries an HTML version of the selection, so headings, lists, and tables survive the trip.
Direct answer
When you copy from Microsoft Word, the clipboard holds two versions of the selection: plain text and HTML. This tool reads the HTML version, strips the Word-specific junk around it, and converts what is left to Markdown. Click the paste box, press Ctrl+V, and the Markdown appears on the right. No file upload and no Word install are involved.
Open the Rich Text to Markdown converterWhen to use this
- A specification, policy, or report lives in .docx and needs to become a Markdown file.
- You pasted from Word into a Markdown editor and got one flat paragraph with no headings.
- You want the structure of a document without opening Word on the machine you are working on.
Steps
- Open the document in Word or Word Online and select the section you want.
- Copy it with Ctrl+C.
- Click the paste box in the tool above and press Ctrl+V.
- Check the Markdown on the right; edit it directly in that box if a heading level is off.
- Copy the Markdown, or download it as a .md file.
Example conversion
(A Word selection: a Heading 1, a paragraph with bold text, and a bulleted list)
# Quarterly plan Owner: **Dana**. Target date is *Friday*. - Copy review - Pricing page - Legal sign-off
Common mistakes
- Do not drag the .docx file onto the page. This tool reads the clipboard, not files. Use the Word to Markdown tool for a file.
- Do not expect comments, tracked changes, or footnotes. Word does not put them on the clipboard, so they cannot be converted.
- Do not expect images to travel. An image in the clipboard HTML points at a local or temporary source, so the Markdown carries a reference you must replace.
- Do not assume Word heading styles were used. If the author made headings by bolding a large font, the clipboard HTML has no heading element and the output is bold text.
FAQ
- Why does pasting Word text into a Markdown editor lose the formatting?
- A Markdown editor is a plain-text box, so it takes only the plain-text flavour of the clipboard and discards the HTML flavour that carries the structure. This tool reads the HTML flavour instead, which is why the headings and lists survive.
- Do Word tables convert?
- Yes. Tables in the clipboard HTML become GitHub Flavored Markdown pipe tables. Merged cells have no Markdown equivalent and will come out flattened.
- Is my document uploaded anywhere?
- No. The conversion runs entirely in your browser. Nothing is sent to a server and no account is needed.
Related paste-to-Markdown guides
Convert a Google Doc to Markdown by Pasting It
Google Docs puts a b style=font-weight:normal wrapper around every copied selection. Left in place it bolds the entire document. This tool removes it before converting.
Convert an Email to Markdown Without the Formatting Junk
Outlook and Gmail messages are HTML with inline styles, mso- declarations, and non-breaking spaces. Paste the message body here to get readable Markdown instead.
Copy a Notion Page to Markdown Without Exporting
Notion's export produces a zip file. For one page, selecting the blocks and pasting them here is faster and gives you Markdown directly.
Clean Up Formatting Junk From Pasted Text
mso- styles, empty spans, non-breaking spaces, zero-width characters, and stray blank lines all ride along in a rich-text paste. Here is what the tool removes and what it keeps.