Skip to main content

Markdown Cheat Sheet

Complete markdown syntax reference with live examples. Copy any syntax in one click.

Headings

# Heading 1

Heading 1

## Heading 2

Heading 2

### Heading 3

Heading 3

Emphasis

**bold text**

bold text

*italic text*

italic text

~~strikethrough~~

strikethrough

Lists

- Unordered item
  - Sub-item
  - Sub-item
- Another item
  • Unordered item
    • Sub-item
    • Sub-item
  • Another item
1. First item
2. Second item
3. Third item
  1. First item
  2. Second item
  3. Third item

Images

![Alt text](https://via.placeholder.com/150)

Alt text

Code

`inline code`

inline code

```javascript
function greet(name) {
  return `Hello, ${name}!`;
}
```
function greet(name) {
  return `Hello, ${name}!`;
}
| Name | Age | Role |
| :--- | :---: | ---: |
| Alice | 30 | Engineer |
| Bob | 25 | Designer |
Name Age Role
Alice 30 Engineer
Bob 25 Designer

Blockquotes

> Single blockquote

Single blockquote

>> Nested blockquote

Nested blockquote

Horizontal Rule

---

Task Lists

- [x] Completed task
  • Completed task
- [ ] Incomplete task
  • Incomplete task

Strikethrough

~~deleted text~~

deleted text

Markdown Cheat Sheet - Complete Syntax Guide | Kolavi Studio