Word to RST Converter - DOCX to reStructuredText
Convert Microsoft Word DOCX files to reStructuredText format. Prepare content for Sphinx documentation and Python projects.
Note: First conversion initializes Pandoc WebAssembly (~55MB download). Subsequent conversions are instant and work offline.
Drop DOCX file here or click to browse
Convert Word documents to reStructuredText for Sphinx
File: ()
Raw RST Source
Upload a DOCX file to see reStructuredText preview
Common Sphinx/RST Use Cases
| Use Case | Documentation System | Typical Workflow |
|---|---|---|
| Python Package Docs | Sphinx + ReadTheDocs | Convert Word guides, add to docs/source/, build with autodoc |
| API Documentation | Sphinx | Combine converted RST with autodoc/autosummary directives |
| Technical Manuals | Sphinx → PDF/HTML | Convert chapters to RST, organize with toctree, build LaTeX/PDF |
| Developer Guides | ReadTheDocs | Convert existing Word docs, add code-block directives, publish |
| Open Source Projects | Sphinx + GitHub Pages | Migrate README/docs from Word to RST, version control |
RST Syntax Reference
| Word Element | RST Output | Notes |
|---|---|---|
| Heading 1 | Title | Double underline for document title |
| Heading 2 | Section | Single underline for sections |
| Heading 3 | Subsection | Tilde underline for subsections |
| Bold text | **bold** | Strong emphasis |
| Italic text | *italic* | Light emphasis |
| Monospace/Code | ``code`` | Inline code with double backticks |
| Code block | .. code-block:: python | Directive for syntax highlighted blocks |
| Bullet list | * Item | Unordered lists |
| Numbered list | #. Item | Auto-numbered ordered lists |
| Hyperlink | `text <url>`_ | External links |
| Table | +-----+-----+ | Grid or simple table format |
Common RST Directives (Add Manually Post-Conversion)
| Directive | Syntax | Purpose |
|---|---|---|
| Note | .. note:: | Highlighted notes/callouts |
| Warning | .. warning:: | Warning callouts |
| Code Block | .. code-block:: python | Syntax-highlighted code |
| Image | .. image:: path/to/image.png | Images with options |
| Table of Contents | .. toctree:: | Document tree navigation |
Copied to clipboard
Security: Only process files from sources you trust. All processing happens locally in your browser.