// what it does and why
Markdown on the left, the rendered version on the right, and a button that hands you the HTML. All of it happens inside your browser tab. Nothing is uploaded, nothing is stored, and there is no account.
Open it →Type in the left box. The right box redraws on every keystroke. Press Copy HTML and the markup behind that preview lands on your clipboard. That is the entire tool. No toolbar, no file menu, no export dialog, no settings.
It handles the markdown people actually write: headings, bold and italic, lists, links, images, blockquotes, tables, strikethrough, checkbox task lists and fenced code blocks. HTML written inside the markdown passes straight through instead of being escaped, which is useful when markdown cannot say what you need, and a good reason to only paste in text you trust.
On a phone the two panes stack, editor above preview, so it stays usable one handed.
I kept needing the same small thing. I had markdown, I wanted HTML, and I wanted to look at it before committing to it. The converters I found online wanted a sign up, or buried the box under ads, or shipped my text off to a server to do a job the browser can do instantly. Some of them keep what you paste.
The preview turned out to matter more than the conversion. Reading raw markdown, you can talk yourself into believing the nesting is fine. Seeing it rendered beside the source, you notice straight away that the third bullet quietly became a paragraph because it was indented one space too far.
The page never sends your text anywhere. There is no server behind it, no database, and no record of what you type. The conversion runs in the tab and the copy is an ordinary browser clipboard call. Once the page has loaded you can drop your internet connection entirely and it keeps working.
The preview is dark and glassy because it is sitting inside this site. None of that styling comes with you. The clipboard gets plain semantic HTML with no classes and no inline styles, so it takes on whatever the page you paste it into already uses. That is deliberate. Pasted HTML that drags somebody else's colours in with it is worse than pasting nothing.
One HTML file, about four kilobytes, plus a single well tested markdown parser loaded from a public CDN. No build step, no framework, nothing to install, nothing that has to be updated on a schedule. It is short enough that I can read the whole thing top to bottom when something misbehaves, which was the real design goal. Every tool on this site is built the same way, so any one of them can be fixed on its own without dragging the rest along.