What flavor of Markdown is supported?
The converter supports CommonMark — headings, emphasis, code, links, images, lists, blockquotes, horizontal rules, and fenced code blocks — plus GitHub-flavored Markdown (GFM) tables with column alignment via colon syntax. It does not currently parse footnotes, task lists, strikethrough, or definition lists. For most documentation, README, and blog use cases the supported subset is sufficient.
Why is my Markdown rendering oddly?
The most common culprits are missing blank lines (CommonMark requires a blank line before a list, table, or code block), inconsistent indentation, and unclosed inline marks (a stray asterisk turns the rest of the paragraph into italics). Paste the snippet alone into the input and add blank lines around any block element to isolate the issue.
Can I include raw HTML inside Markdown?
Standard CommonMark allows raw HTML and treats it as pass-through. This converter escapes HTML inside Markdown to keep output safe by default — pasted Markdown that contains <script> tags or onclick handlers will be rendered as text, not executed. If you need to embed verbatim HTML for trusted content, render the resulting HTML through your own sanitizer downstream.
Are line breaks preserved?
Per CommonMark, a single newline inside a paragraph is treated as a soft break (rendered as a space), and a blank line separates paragraphs. Two trailing spaces at the end of a line force a hard break. If you want every newline to become a <br>, you are looking for GitHub-style "soft-break-as-hard-break" behavior — that is not enabled here to match standard CommonMark output.
Does it support tables with column alignment?
Yes. GitHub-flavored Markdown tables are supported — use a colon on the left, right, or both sides of the dashes in the separator row to align left, right, or center. Example: |:---| left, |:---:| center, |---:| right. The alignment is emitted as inline style on every <th> and <td> in that column.
Can I download the rendered HTML?
Toggle the Raw HTML view to see the generated markup, then click Copy HTML. Paste it into any text editor and save as .html. The output is a single block of HTML5 fragments — wrap it in <!DOCTYPE html><html><body>...</body></html> if you need a standalone document.
Is my Markdown sent to a server?
No. The parser runs entirely in JavaScript inside your browser. Documentation drafts, internal notes, and proprietary content never leave your device. Verify in your browser DevTools Network tab — no requests fire when you type or paste.
How do I render math, diagrams, or footnotes?
Math (KaTeX/MathJax), Mermaid diagrams, and footnotes are CommonMark extensions, not part of the core spec. They are not rendered here — for full Obsidian or GitHub Wiki parity use a dedicated previewer, or post-process the HTML output with KaTeX/Mermaid client libraries.