Markdown Toolbox Logo Markdown Toolbox
Home
Blog

Cheat Sheet - Markdown (Standard Items)

Tuesday, December 5, 2023

Markdown is a lightweight markup language with plain-text formatting syntax. This cheat sheet covers the standard elements of Markdown, providing a quick reference to commonly used syntax.

Headings

# Header 1

## Header 2

### Header 3

Emphasis

Lists

-   Item 1
-   Item 2

1. First Item
2. Second Item

Links and Images

Code and Syntax Highlighting

`inline code`

\```
block code
\```

Blockquotes

> This is a blockquote.

Tables

| Header 1 | Header 2 |
| -------- | -------- |
| Row 1    | Data 1   |
| Row 2    | Data 2   |

Horizontal Rules

This cheat sheet covers the basics of standard Markdown, ideal for a variety of documentation and note-taking purposes.