Markdown Guide
André Lichtenthäler
Markdown Formatting Demo
Welcome to the Markdown Formatting Demo! This document showcases nearly every formatting element supported in Markdown.
1. Headers
H1
H2
H3
H4
H5
H6
2. Emphasis
- Italic
- Italic (underscore)
- Bold
- Bold (underscore)
- Bold and Italic
Strikethrough
3. Lists
Unordered List
- Item A
- Subitem A1
- Subitem A1a
- Subitem A1
- Item B
Ordered List
- First
- Second
- Second A
- Second B
- Third
4. Links
- Inline Link
- Reference Link
- Autolink: https://example.com
5. Images
![]()
6. Code
Inline Code
Use the print() function.
Code Block (fenced)
.hero-blur-bg {
position: absolute;
top: 50%;
left: 50%;
border-radius: 50%;
width: 184px;
height: 184px;
background-image: linear-gradient(-22deg, #001254 20%, #e2004f 50%);
filter: blur(24px);
transform: translate(-50%, -50%);
}