Markdown Reference
Headers
# Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Text Formatting
**Bold Text** *Italic Text* ~~Strikethrough~~ **Bold and _nested italic_** ***Bold and Italic*** Underlined Text `Inline Code` ==Highlighted Text==
Bold Text
Italic Text
Strikethrough
Bold and nested italic
Bold and Italic
Underlined Text
Inline Code
Highlighted Text
Lists
Unordered: - Item 1 - Item 2 - Nested item A - Nested item B - Item 3 Ordered: 1. First item 2. Second item 1. Sub-item 1 2. Sub-item 2 3. Third item
Unordered:
- Item 1
-
Item 2
- Nested item A
- Nested item B
- Item 3
Ordered:
- First item
-
Second item
- Sub-item 1
- Sub-item 2
- Third item
Links & Images
[Link text](https://www.example.com) [Link with title](https://www.example.com "Website Title")  
Blockquotes & Code
> This is a blockquote > > > Nested blockquote Inline code: `const x = 1;` Code block with syntax highlighting: ```javascript function hello() { console.log("Hello, world!"); } ```
This is a blockquote
Nested blockquote
Inline code: const x = 1;
Code block with syntax highlighting:
function hello() {
console.log("Hello, world!");
}
Tables
| Header 1 | Header 2 | Header 3 | | -------- | :------: | -------: | | Default | Center | Right | | aligned | aligned | aligned |
Header 1 | Header 2 | Header 3 |
---|---|---|
Default | Center | Right |
aligned | aligned | aligned |
Task Lists
- [x] Completed task - [ ] Incomplete task - [x] Another completed task - [ ] Nested task
- Completed task
- Incomplete task
-
Another
completed task
- Nested task
Mathematical Expressions (MathJax)
Inline math: $E = mc^2$ Block math: $$ \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$
Inline math: E = mc2
Block math:
Horizontal Rule & Line Breaks
Three or more hyphens, asterisks, or underscores: --- *** ___ Line break (two spaces at end of line) or use <br>
Three or more hyphens, asterisks, or underscores:
Line break (two spaces at end of line)
or use <br>
Footnotes
Here's a sentence with a footnote.[^1] [^1]: This is the footnote content.
Here's a sentence with a footnote.[1]
[1] This is the footnote content.
HTML Support
<details> <summary>Click to expand!</summary> ## Heading Detailed content here... </details> <div style="color: red;">Colored text</div>
Click to expand!
Heading
Detailed content here...