How to Use
- 1
Type Markdown syntax in the left editor panel.
- 2
The rendered HTML preview updates live in the right panel as you type - no button press needed.
- 3
Your Markdown is processed entirely in your browser. Use the Copy button to copy either the source or the rendered content.
Frequently Asked Questions
What Markdown features are supported? โผ
Headings (# H1 through ###### H6), bold (**text**), italic (*text*), strikethrough (~~text~~), links ([text](url)), images (), fenced code blocks (```language), inline code (`code`), blockquotes (>), ordered and unordered lists, and horizontal rules (---).
Can I export the rendered HTML? โผ
You can copy the Markdown source and use it anywhere. The preview shows how your Markdown will render in GitHub, README files, most blogging platforms, and any standard Markdown renderer.
How do I create a code block in Markdown? โผ
Wrap code with triple backticks on separate lines before and after. Add a language name after the opening backticks for syntax highlighting: ```javascript on the first line, then your code, then ``` to close. For inline code, wrap with single backticks.
Can I write tables in Markdown? โผ
Yes. Use pipe characters | to separate columns and hyphens --- for the header separator row. Example: | Name | Age | on the first line, | --- | --- | on the second line, then data rows below.