Markdown Demo Showcase
This is a demo of the Markdown syntax.
Paragraphs
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
Literals
A normal paragraph.
A paragraph offset by 4 spaces becomes a literal paragraph.
All lines in a literal paragraph must be adjacent.
A literal paragraph is displayed as preformatted text.
The text is shown in a fixed-width font.
Spaces and newlines,
like the ones in this sentence,
are preserved.
Another normal paragraph.
Source code
#include <iostream>
int main()
{
std::cout << "Hello, World!" << std::endl;
return 0;
}
Headings
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Formatted Text
Some bold text
Some italic text
Some monospace text
Some strikethrough text: strikethrough
Table
| Syntax | Description |
|---|---|
| Header | Title |
| Paragraph | Text |
Footnotes
Here’s a sentence with a footnote. 1
Scroll to the bottom of the page to see the footnote.
Lists
Unordered List
- Item 1
- Item 2
- Item 2.1
- Item 2.2
- Item 3
Ordered List
- Item 1
- Item 2
- Item 3
- Item 3.1
- Item 3.2
- Item 4
Links
Images

Heading IDs
The heading below has a custom ID “custom-id”
My Great Heading
-
This is the footnote. ↩︎