Markdown Cheatsheet

Markdown Cheatsheet

Markdown is a very handy way of producing content for the web without having to write HTML. It allows you to write text using its very simple syntax and then converts it to structurally valid HTML.

If you’re looking to use the Markdown syntax for your web documents, we’ve created a cheatsheet that can help you learn and understand the syntax. While there are many flavors of Markdown, this list contains all the syntax of the core Markdown spec and the extended syntax supported by Github Flavoured Markdown.

Markdown Cheatsheet Download

Download this Cheatsheet

Enter your email below to receive this PDF cheatsheet in your Inbox.

MarkdownHTML
Plain Text
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, accusantium provident necessitatibus corrupti culpa cum? Culpa, aspernatur vel perferendis doloremque facere reiciendis illum eaque laborum, voluptatum, quos minus omnis dicta.

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, accusantium provident necessitatibus corrupti culpa cum? Culpa, aspernatur vel perferendis doloremque facere reiciendis illum eaque laborum, voluptatum, quos minus omnis dicta.

Headings
# Text

Text

## Text

Text

### Text

Text

#### Text

Text

##### Text
Text
###### Text
Text
## A Custom Heading {heading-id}

A Custom Heading

Emphasis
**Strong** or __strong__Strong
*Emphasis* or _emphasis_Emphasis
~~Strikethrough~~Strikethrough
==Highlight==Highlight
O~2O2
x^2x2
\*\*Strong\*\*
**Strong**
Links
[MTE](https://maketecheasier.com/)MTE
[MTE](https://maketecheasier.com/ “Search”)MTE
[mte]:https://maketecheasier.com/ “Search”[MTE][mte]MTE
https://maketecheasier.com
Named Anchors
[Chapter 1](#chapter-1)Chapter 1
[Chapter 2](#chapter-2) Chapter 2
[Chapter 3](#chapter-3)Chapter 3
Images
![Alt Text](/path/to/img.jpg)”Alt
![Alt Text](/path/to/img.jpg “Title”)”Alt
[img1]: /path/to/img.jpg “Title” ![Alt Text] [img1]”Alt
Tables
| Company | Tagline |
|———–|————————–|
| Google | Don’t be evil |
| Nike | Just do it |
| Reddit | frontpage of the internet |















CompanyTagline
Google be evil
NikeJust do it
RedditFrontpage of the Internet
| Company | Tagline |
| :— | |
| Google | be evil |







CompanyTagline
Google be evil
| Company | Tagline |
| | :—: |
| Google | be evil |







CompanyTagline
Google be evil
| Company | Tagline |
| | —:|
| Google | be evil |







CompanyTagline
Google be evil
Horizontal Rule
* * *
– – –
_ _ _
Inline Code
use `
` instead of `
`
use
instead of
Code Blocks
` ` `
section {
float: left;
margin: 0 auto;
}` ` `
section {
float: left;
margin: 0 auto;
}
` ` `css
section {
float: left;
margin: 0 auto;
}` ` `

section {
float: left;
margin: 0 auto;
}
Lists
Unordered List

* Android
* Windows
* Linux
* Ubuntu
* Linux Mint

  • Android

  • Windows

  • Linux

    • Ubuntu

    • Linux Mint



Ordered List

1. First
2. Second
3. Third
1. Alpha
2. Beta


  1. First

  2. Second

  3. Third

    1. Alpha

    2. Beta



Checkbox List


– [ ] Tomatoes
– [ ] Eggs
– [ ] Milk










Blockquotes
> make tech
> easier

make tech easier


> make tech easier

make tech easier


> Level One
>
> > Level Two
> >
> > > Level Three

Level One



Level Two



Level Three




Definition List
Hello
: A word in the English language to signify greetings.
: “Hello! How are you?”
Thanks
: A word in the English language to signify gratitude towards another person.
: “Oh wow, thanks!”

Hello

A word in the English language to signify greetings.

”Hello! How are you?”

Thanks
A word in the English language to signify gratitude towards another person.

”Oh wow, thanks!”

Footnotes
This is an example text [^1] with a couple of footnote tags[^2].

This is an example text [1] with a couple of footnote tags[2]

[^1]: The text is a short sentence that talks about footnote tags.
[^2]: A tag could either a single numeral or a word or phrase.

[1]: The text is a short sentence that talks about footnote tags.


[2]: A tag could either a single numeral or a word or phrase.

Image credit: Unsplash

Ramces Red Avatar

Subscribe to our newsletter!

Our latest tutorials delivered straight to your inbox