Skip to content

Markdown

Basic Syntax

Headings

# H1
## H2
### H3
#### H4
##### H5
###### H6

Emphasis

*Italic* or _Italic_

**Bold** or __Bold__

***Bold and Italic*** or ___Bold and Italic___

Lists

Unordered List

- Item 1
- Item 2
  - Subitem 1
  - Subitem 2

Ordered List

1. Item 1
2. Item 2
   1. Subitem 1
   2. Subitem 2
[Link Text](https://example.com)

Images

![Alt Text](https://example.com/image.jpg)

Blockquotes

> This is a blockquote.

Code

Inline Code

`Inline code`

Code Block


Code block

Horizontal Rule

---

Extended Syntax

Tables

| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |

Footnotes

This is a footnote reference[^1].

[^1]: This is the footnote.

Strikethrough

~~Strikethrough~~

Task List

- [x] Task 1
- [ ] Task 2

Emoji

:smile:

Highlight

==Highlighted text==

Examples

Example Document

# Markdown Example

## Introduction
Markdown is a lightweight markup language for creating formatted text using a plain-text editor.

## Syntax

### Headings
# H1
## H2
### H3

### Emphasis
*Italic* or _Italic_
**Bold** or __Bold__
***Bold and Italic*** or ___Bold and Italic___

### Lists
#### Unordered List
- Item 1
- Item 2
  - Subitem 1
  - Subitem 2

#### Ordered List
1. Item 1
2. Item 2
   1. Subitem 1
   2. Subitem 2

### Links
[Link Text](https://example.com)

### Images
![Alt Text](https://example.com/image.jpg)

### Blockquotes
> This is a blockquote.

### Code
`Inline code`
Code block
### Horizontal Rule
---