Markdown Editor & Preview
Write markdown and see the rendered preview in real time
Frequently Asked Questions
What is Markdown and how do I use it?
Markdown is a lightweight text formatting syntax that converts to HTML. Use # for headings, **bold** for bold text, *italic* for italics, and – or * for bullet lists. The editor’s toolbar buttons insert the correct syntax at your cursor so you do not need to memorize every shortcut. The right pane shows the rendered result as you type.
How do I create a table in Markdown?
Use pipes and dashes: | Column1 | Column2 | on the header row, then | — | — | as a separator, then | Data | Data | for each row. The toolbar’s table button inserts a ready-made template. For complex tables with many rows, the Markdown Table Generator tool on this site is faster because you fill in a visual grid instead.
How do I add a link in Markdown?
The syntax is [Link Text](https://example.com). Replace Link Text with the words you want clickable and put the URL inside the parentheses. The editor’s link toolbar button inserts the brackets and parentheses for you. For images the syntax is the same but with an exclamation mark at the front: .
Can I export my Markdown document as HTML?
Yes. The toolbar includes a button to copy the rendered HTML output from the preview pane. You can then paste the HTML into any website, email, or content management system. The tool also shows word count and character count so you can track document length while writing.
Does the Markdown editor save my work?
The editor does not save to a server. Your text exists only in your browser session. If you refresh or close the tab, the content is lost. Before closing, use the Copy HTML or copy the Markdown text button to save your work externally, such as in a text file, Notion, or a writing app.