Full Markdown & HTML Master-Sheet
Copy the code in the left column to get the result in the right column.
| Markdown / HTML Code | Visual Result | ||||||
|---|---|---|---|---|---|---|---|
| 1. Headers (Headlines) | |||||||
# H1 Headline## H2 Headline### H3 Headline |
H1H2H3 |
||||||
| 2. Text Styles | |||||||
*Italic Text* |
Italic Text | ||||||
**Bold Text** |
Bold Text | ||||||
***Bold Text*** |
Bold Text | ||||||
~~Strikethrough~~ |
|||||||
<sub>Subscript</sub> / <sup>Superscript</sup> |
Subscript / Superscript | ||||||
| 3. Professional Layout (Blurt Specials) | |||||||
<center>Centered Text</center> |
|||||||
<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 |
|
||||||
* Bullet Point * Nested Point |
|
||||||
- [ ] Open Task- [x] Completed Task |
Open Task Completed Task |
||||||
| 5. Complex Tables | |||||||
| Header | Center | Right || :--- | :---: | ---: || Text | Middle | 100 | |
|
||||||
| 6. Media & Links | |||||||
[Link Title](URL) |
Link Title | ||||||
 |
(Displays the actual image) | ||||||
[](LinkURL) |
(Makes the image clickable) | ||||||
| 7. Advanced & Code | |||||||
> Quote / Blockquote |
This is a quote. |
||||||
|
|
(Horizontal Line) |
||||||
``` |
|
||||||
| 8. Mention users | |||||||
@User |
@User | ||||||
Pro Tip: Use
<br> for manual line breaks and for extra spaces.