RST to HTML Converter - Python Documentation Tool
Convert reStructuredText to HTML with directives, roles, and code highlighting. Perfect for Python docs, Sphinx projects, technical writing.
Note: First conversion initializes Pandoc WebAssembly (~55MB). Subsequent conversions are instant.
Drop RST file here or click to browse
Accepts .rst, .txt filesEnter RST to see preview
Common RST Syntax
| RST Syntax | Description | HTML Result |
|---|---|---|
**bold** | Strong emphasis | bold |
*italic* | Emphasis | italic |
``code`` | Inline literal | code |
Title | Section heading | <h1>Title</h1> |
Subtitle | Subsection | <h2>Subtitle</h2> |
.. note:: | Note directive | Highlighted note box |
.. warning:: | Warning directive | Highlighted warning box |
.. code-block:: python | Code block with language | <pre><code class="python"> |
:ref:`label` | Role (cross-reference) | Inline semantic markup |
`link <url>`_ | Hyperlink | <a href="url">link</a> |
Copied to clipboard