Web Utilities

Markdown Previewer

Write Markdown on the left and see a live rendered preview on the right. Copy HTML when done. Runs entirely in your browser.

Markdown
0 words
Preview

Markdown Syntax Guide

Markdown allows you to write structured, formatted content using only your keyboard and plain-text symbols. This tool instantly converts your Markdown syntax on the left into standards-compliant HTML on the right, which you can easily export or copy.

Basic Formatting

Heading tags are created using the hash symbol (#). A single hash represents an H1, two hashes represent an H2, and three represent an H3. To emphasize text, wrap words in double asterisks for **bolding**, or single asterisks for *italics*. To write an inline code snippet, wrap text in single backticks (`code`), and for multi-line code blocks, use triple backticks above and below the code block.

Lists and Quotes

To create an unordered bullet list, start the line with a hyphen (- ) or an asterisk (* ), followed by a space. Numbered lists simply use digits followed by a period (1. ). To blockquote text (often used for citations or drawing attention), start the line with a right-angle bracket (> ).