Markdown Made Simple:
Your Quick Start Guide

By Tim Ikels

Last Updated: January 20, 2025

Tim Ikels - ProfileHey, it's Tim here...

Why Markdown?

Markdown is a fast and simple way to write and publish content online.

Here’s why it’s great:

You may already use it in forums, social media, or email apps.

Here's a quick guide to help you master Markdown!

Basic Markdown Elements

Here's a quick reference to the most common Markdown syntax you'll need:

Basic Element Markdown Syntax
Heading # Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Bold **bold text**
Italic *italicized text*
Link [title](https://www.example.com)
Image ![alt text](image.jpg)
Ordered List 1. First item
2. Second item
3. Third item
Unordered List - First item
- Second item
- Third item
Horizontal Rule ---
Blockquote > blockquote
Code `code`

Advanced Markdown Elements

For more advanced uses, here's some additional Markdown syntax:

Advanced Element Markdown Syntax
Strikethrough ~~ Strikethrough ~~
Table | HeadCol1 | HeadCol2 |
| --- | --- |
| CellDataC1 | CellDataC2 |
Code Block ```
Any code here
Any code here
Any code here
```
Definition List term
: definition
Task List - [x] Write a blog post
- [ ] Buy a new book
- [ ] Turn off all media
Highlight == This text is highlighted ==

Cheat Sheet

Headings:

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Bold:

**bold text**

Italic:

*italicized text*

Link:

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

Image:

![alt text](image.jpg)

Lists:

Ordered list:

1. First item
2. Second item

Unordered list:

- First item
- Second item

Blockquote:

> blockquote

Code:

`code`

Advanced Syntax:

Strikethrough:

~~strikethrough~~

Table:

| Header | Header |
| ------ | ------ |
| Data   | Data   |

Code Block:

```
code block
```

Task List:

- [x] Completed task
- [ ] Pending task

Highlight:

==highlighted text==

Links / Resources

Best,
Tim