TL
Tool Lab
πŸ’°Donate
πŸ’°Donate

Markdown Syntax Reference

Complete Markdown syntax cheat sheet with live preview.

Headings

# Heading 1

Heading 1

## Heading 2

Heading 2

### Heading 3

Heading 3

Emphasis

**bold**
bold
*italic*
italic
***bold italic***
bold italic
~~strikethrough~~
strikethrough
`inline code`
inline code

Lists

- item
- item
- item
  • item
  • item
  • item
1. first
2. second
3. third
  1. first
  2. second
  3. third
- [x] done
- [ ] todo
  • βœ… done
  • ☐ todo

Links & Images

[text](url)
[text](url "title")
![alt](image.png)
[image: alt text]
<https://example.com>

Code

`inline code`
inline code
```js
code block
```
code block

Blockquotes & Lines

> blockquote
blockquote
---

Tables

| Col1 | Col2 |
|------|------|
| a    | b    |
Col1Col2
ab

Miscellaneous

\*escape\*
*literal asterisks*
<!-- comment -->
(comment hidden in output)
&amp; &lt; &gt;
& < >