Full Markdown & HTML Master-Sheet

Copy the code in the left column to get the result in the right column.

Markdown / HTML CodeVisual Result
1. Headers (Headlines)
# H1 Headline
## H2 Headline
### H3 Headline

H1

H2

H3

2. Text Styles
*Italic Text* Italic Text
**Bold Text** Bold Text
***Bold Text*** Bold Text
~~Strikethrough~~ Strikethrough
<sub>Subscript</sub> / <sup>Superscript</sup> Subscript / Superscript
3. Professional Layout (Blurt Specials)
<center>Centered Text</center>
Centered Text
<div class="pull-left">Text/Image on the left</div>
Left Aligned Content
<div class="pull-right">Text/Image on the right</div>
Right Aligned Content
 
<div class="text-justify">Justified text...</div>
This text is stretched so that every line has equal width, creating a clean magazine look.
4. Lists & Checkboxes
*, - or + text
  •  text
* Bullet Point
  * Nested Point
  • Bullet Point
    • Nested Point
- [ ] Open Task
- [x] Completed Task
Open Task
Completed Task
5. Complex Tables
| Header | Center | Right |
| :--- | :---: | ---: |
| Text | Middle | 100 |
HeaderCenterRight
Text Middle 100
6. Media & Links
[Link Title](URL) Link Title
![Alt Text](ImageURL) (Displays the actual image)
[![Alt](ImgURL)](LinkURL) (Makes the image clickable)
7. Advanced & Code
> Quote / Blockquote
This is a quote.

--- (Three dashes), *** or ___


(Horizontal Line)
```
Code Block
```
Code Block
8. Mention users
@User @User
Pro Tip: Use <br> for manual line breaks and &nbsp; for extra spaces.

Blurt Guide - Markdown Documentation