Markdown Previewer
Write Markdown and see a live preview. Includes a handy syntax guide.
Markdown Syntax Guide
Headings
# H1Largest heading
## H2Second largest heading
### H3And so on...
###### H6Smallest heading
Emphasis
*italic text* or _italic text_Italic
**bold text** or __bold text__Bold
***bold and italic*** or ___bold and italic___Bold and Italic
~~strikethrough~~Strikethrough
Lists
* Item 1 * Item 2 * Nested Item 2a * Nested Item 2bUnordered List
1. First Item 2. Second Item 1. Nested First 2. Nested SecondOrdered List
Links
[Link Text](https://www.example.com)Basic link
[Link Text with Title](https://www.example.com "Link Title")Link with a hover title
Images
Image with alt text
Code Blocks / Inline
`inline code`Inline code snippet
```javascript console.log("Hello, world!"); ```Fenced code block with language specification
``` Generic code block ```Generic fenced code block
Blockquotes
> This is a blockquote. > > It can span multiple lines.Standard blockquote
Horizontal Rules
---Horizontal rule
***Another way for horizontal rule
___Yet another way
Icons
Markdown doesn't natively support icons. You can include SVGs directly as HTML if your Markdown parser allows raw HTML (like the one used here), or use image tags:
. For SVG examples, you might use something like: