A live markdown preview is what most modern markdown editors give you out of the box — type on one side, see the rendered result on the other. This tool is the standalone version: paste your markdown, see the rendered HTML in a sandboxed pane next to it, with no need to install an editor.
The renderer is marked configured for GitHub-Flavored Markdown — the same dialect that GitHub Issues, Reddit, Discord, and most modern markdown surfaces use.
How the preview works
You type into the left pane. After a 100ms debounce, the markdown is converted to HTML by marked and injected into the iframe in the right pane. The iframe uses sandbox="" (empty allow list) which is the strictest sandbox setting — no script execution, no form submission, no popups, no same-origin access, no top-level navigation. Even pasted markdown containing <script> or <iframe> tags renders inert.
The iframe ships with a basic GitHub-like stylesheet so the preview is readable without any setup. It honours prefers-color-scheme, so if your OS is in dark mode, the preview pane is too.
Example: drafting a Reddit post
Reddit uses Markdown for comments and posts. You’re drafting a long post with headings, code blocks, and a few images. Type it here, see how it’ll look, refine the formatting before posting.
Example: writing a README
Open this tool in one tab, your README.md file in another. As you edit and save, paste-refresh the markdown into this tool to verify the rendering. Faster than committing-and-checking-on-GitHub for every iteration.
Example: catching markdown mistakes
You wrote **bold** but it’s rendering as literal **bold** instead of bold? This tool will show you the same mismatch your final destination would. Common causes: missing space after # in headings, missing blank line before lists, accidental escape with backslash. Fix in the editor, watch the preview update.
What the preview does not do
It does not apply your site’s CSS. The iframe is isolated; only its built-in stylesheet applies. If you need to see exactly how the output will look on your specific page, copy the HTML from the Markdown to HTML converter and inject it into your page directly.
It does not render GitHub-specific extensions: commit references, issue mentions, @user autolinks. Those only make sense in a repository context. Pure markdown features (formatting, tables, code blocks) all work.
It does not support markdown extensions beyond GFM (footnotes, definition lists, math). Those need additional marked plugins not bundled here.
It does not let you edit the rendered side. The right pane is read-only — that’s by design (a sandboxed iframe is a one-way display, not an editor). Use a dedicated editor like Obsidian or VS Code if you want bidirectional editing. For going the other direction — existing HTML back to markdown — the HTML to Markdown converter is the companion.