# Markdown Cheat Sheet

  • https://daringfireball.net/projects/markdown/
  • https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax
  • https://github.github.com/gfm/

# Basic Syntax

All Markdown applications support these elements.

# Heading

# H1

# H1

# H2

# H2

# H3

### H3

# Bold

bold text

**bold text**

# Italic

italicized text

*italicized text*

# Blockquote

blockquote

> blockquote

# Ordered List

  1. First item
  2. Second item
  3. Third item
1. First item
2. Second item
3. Third item

# Unordered List

  • First item
  • Second item
  • Third item
- First item
- Second item
- Third item

# Code

code

`code`

# Horizontal Rule


---

title

[title](https://www.example.com)

# Image

alt text

![alt text](image.jpg)

# Extended Syntax

Not all Markdown applications support these elements.

# Table

Syntax Description
Header Title
Paragraph Text
| Syntax | Description |
| - | - |
| Header | Title |
| Paragraph | Text |

# Fenced Code Block

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}

# Footnote

Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.

Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.

# Heading ID

# My Great Heading {#custom-id}

### My Great Heading {#custom-id}

# Definition List

term : definition

term
: definition

# Strikethrough

Lorem ipsum

~~Lorem ipsum~~

# Task List

  • [x] Lorem ipsum
  • [ ] Lorem ipsum
  • [ ] Lorem ipsum
- [x] Lorem ipsum
- [ ] Lorem ipsum
- [ ] Lorem ipsum