AI Generated Cheatsheets

Markdown Cheatsheet

Markdown is a lightweight markup language that can be used to format text for the web. Here are some of the basic syntax elements:

Headers

Emphasis

Lists

Unordered Lists

Ordered Lists

  1. Item 1
  2. Item 2
  3. Item 3

[Link text](URL)

Images

!Alt text

Code

`Inline code`

```

Block of code

```

Horizontal Rule


Blockquote

> This is a blockquote.

Tables

| Column 1 | Column 2 |

|———- ———-
| Row 1, Column 1 Row 1, Column 2
| Row 2, Column 1 Row 2, Column 2

Task Lists

Strikethrough

~~Strikethrough~~

Inline HTML

<span style=”color:red”>Red text</span>

For more information, check out the official Markdown documentation.