MarkPrep

Markdown cheatsheet

The syntax you actually use, including GitHub-flavoured extras. Copy any line into the editor to see it render.

Headings

# H1Top-level heading
## H2Section heading
### H3Sub-section

Emphasis

**bold**bold
*italic*italic
~~strikethrough~~strikethrough (GFM)
`inline code`inline code

Lists

- itemBulleted list
1. itemNumbered list
- [ ] taskTask list, unchecked (GFM)
- [x] taskTask list, checked (GFM)

Links & images

[text](https://url)Link
![alt](image.png)Image
<https://url>Autolink

Code blocks

```jsOpen a fenced block with a language
console.log(1)Code line
```Close the block

Tables (GFM)

| A | B |Header row
| --- | --- |Separator row
| 1 | 2 |Data row

Other

> quoteBlockquote
---Horizontal rule
\* escapedEscape a character