Markdown Cheat Sheet

A quick reference to the Markdown syntax. Overview. This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements.

Reference

[h2] Tables

| Column 1 Heading | Column 2 Heading |
| ---------------- | ---------------- |
| Some content     | Other content    |
Column 1 Heading | Column 2 Heading
--- | ---
Some content | Other content

[h2] Horizontal line

----
****

[h2] Blockquotes

> This is
> a blockquote
>
> > Nested
> > Blockquote

[h2] Code

4 space indent
    makes a code block

code fences

```js
codeFences.withLanguage()
### [h2] Images



```markdown
![Image alt text](/path/to/img.jpg)
![Image alt text](/path/to/img.jpg "title")
![Image alt text][img]
[img]: http://foo.com/img.jpg

[h2] Links

[link](http://google.com)
[link][google]
[google]: http://google.com
<http://google.com>

[h2] Lists

* Item 1
* Item 2
- Item 1
- Item 2
- [ ] Checkbox off
- [x] Checkbox on
1. Item 1
2. Item 2

[h2] Emphasis

*italic*
_italic_
**bold**
__bold__
`code`

[h2] h3

h4

h5
h6


markdown

Header 1


markdown

Header 2

### [Reference] Headers


markdown

h1

38