Markdown Cheatsheet
12 Nov 2024Markdown Tutorial
Basic Text Formatting
Plain text requires no special formatting.
**Bold text** uses double asterisks
*Italic text* uses single asterisks
***Bold and italic*** uses triple asterisks
~~Strikethrough~~ uses double tildes
Plain text requires no special formatting.
Bold text uses double asterisks
Italic text uses single asterisks
Bold and italic uses triple asterisks
Strikethrough uses double tildes
# H1 Header
## H2 Header
### H3 Header
#### H4 Header
##### H5 Header
###### H6 Header
Headers
H1 Header
H2 Header
H3 Header
H4 Header
H5 Header
H6 Header
Lists
- Item 1
- Item 2
- Nested item 2.1
- Nested item 2.2
- Item 3
- First item
- Second item
- Nested item 2.1
- Nested item 2.2
- Third item
* Item 1
* Item 2
* Nested item 2.1
* Nested item 2.2
* Item 3
1. First item
2. Second item
1. Nested item 2.1
2. Nested item 2.2
3. Third item
Links and Images
[Link text](https://example.com)
[Link with title](https://example.com "Link title")

Code
Inline code
uses backticks
# Code block with syntax highlighting
def hello_world():
print("Hello, World!")
Inline `code` uses backticks
```python
# Code block with syntax highlighting
def hello_world():
print("Hello, World!")
```
Blockquotes
Single line blockquote
Multiline blockquote continues here
Nested blockquote
> Single line blockquote
>
> Multiline blockquote
> continues here
>> Nested blockquote
Tables
| Header 1 | Header 2 | |———-|———-| | Cell 1 | Cell 2 | | Cell 3 | Cell 4 |
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
Task Lists
- Completed task
- Uncompleted task
- [x] Completed task
- [ ] Uncompleted task
Horizontal Rules
Three or more hyphens, asterisks, or underscores:
---
***
___
Front Matter
---
layout: post
title: "Markdown Tutorial"
date: 2024-11-19
categories: [tutorials, markdown]
tags: [markdown, writing]
---