DEV Community

Lam
Lam

Posted on

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    |
Enter fullscreen mode Exit fullscreen mode
Column 1 Heading | Column 2 Heading
--- | ---
Some content | Other content
Enter fullscreen mode Exit fullscreen mode

[h2] Horizontal line

----
Enter fullscreen mode Exit fullscreen mode
****
Enter fullscreen mode Exit fullscreen mode

[h2] Blockquotes

> This is
> a blockquote
>
> > Nested
> > Blockquote
Enter fullscreen mode Exit fullscreen mode

[h2] Code

    4 space indent
    makes a code block
Enter fullscreen mode Exit fullscreen mode
```
code fences
```
Enter fullscreen mode Exit fullscreen mode
```js
codeFences.withLanguage()
```
Enter fullscreen mode Exit fullscreen mode

[h2] Images

![Image alt text](/path/to/img.jpg)
![Image alt text](/path/to/img.jpg "title")
![Image alt text][img]
Enter fullscreen mode Exit fullscreen mode
[img]: http://foo.com/img.jpg
Enter fullscreen mode Exit fullscreen mode

[h2] Links

[link](http://google.com)
Enter fullscreen mode Exit fullscreen mode
[link][google]
[google]: http://google.com
Enter fullscreen mode Exit fullscreen mode
<http://google.com>
Enter fullscreen mode Exit fullscreen mode

[h2] Lists

* Item 1
* Item 2
Enter fullscreen mode Exit fullscreen mode
- Item 1
- Item 2
Enter fullscreen mode Exit fullscreen mode
- [ ] Checkbox off
- [x] Checkbox on
Enter fullscreen mode Exit fullscreen mode
1. Item 1
2. Item 2
Enter fullscreen mode Exit fullscreen mode

[h2] Emphasis

*italic*
_italic_
Enter fullscreen mode Exit fullscreen mode
**bold**
__bold__
Enter fullscreen mode Exit fullscreen mode
`code`
Enter fullscreen mode Exit fullscreen mode

[h2] h3

h4

h5
h6

Enter fullscreen mode Exit fullscreen mode


markdown

Header 1


Enter fullscreen mode Exit fullscreen mode


markdown

Header 2


### [Reference] Headers

Enter fullscreen mode Exit fullscreen mode


markdown

h1

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay