Reading a .docx on your phone
Preview a document someone sent you without installing Office, and copy the text you need.
Guide
Word converter opens a .docx to read its content where Word is not installed, and switches it into three more portable text formats: HTML (a complete web page with base styling), plain text and Markdown (heading levels, bold and italic, lists, tables, links and images kept). Parsing uses the mammoth library inside the browser, while the preview uses a separate renderer that tries to reproduce the page layout.
Updated 2026-09-093 min read
Word converter opens a .docx to read its content where Word is not installed, and switches it into three more portable text formats: HTML (a complete web page with base styling), plain text and Markdown (heading levels, bold and italic, lists, tables, links and images kept). Parsing uses the mammoth library inside the browser, while the preview uses a separate renderer that tries to reproduce the page layout.
Its output is text-shaped. For PDF use Word to PDF; to convert between HTML and Markdown, HTML ↔ Markdown is all you need.
| Input | Output | Notes |
|---|---|---|
meeting-notes.docx (headings + numbered list + table) |
meeting-notes.md: ## heading, 1. list, | table | |
line breaks inside cells become <br> |
a product guide .docx with illustrations |
in HTML and Markdown the images are inlined as data: base64 |
the file grows with every embedded image |
resume.doc (old format) |
a notice that only .docx is supported |
save it as .docx first |
Preview a document someone sent you without installing Office, and copy the text you need.
Convert to Markdown and paste into Notion, Yuque or GitHub, where headings and lists work as they are.
When you want the words without the formatting, switch to Plain text and copy; the result is cleaner than select-all and paste in Word.
Images embedded in the .docx become base64 strings starting with data: written straight into the file, so a single .md carries its own images; for separate image files, save the document as a web page in Word.
The document uses a custom style name that mammoth cannot map to a tag, so the paragraph is treated as ordinary body text. No text is lost, but a heading level may come out as body text.
No. HTML, TXT and Markdown are structured text formats that keep structure but not visual styling; to keep the appearance, use Word to PDF.
The .docx is parsed, previewed and converted in your browser; the file contents are never uploaded to any server, and the data is released from memory when you close the page.
Updated 2026-09-09
Preview .docx in the browser and convert it to HTML, plain text or Markdown
.docx (Word 2007+) only; for legacy .doc files, save as .docx first