You are on page 1of 2

MARKDOWN SYNTAX

Markdown HTML
Plain Text
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, accusantium <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, accusantium
provident necessitatibus corrupti culpa cum? Culpa, aspernatur vel perferendis provident necessitatibus corrupti culpa cum? Culpa, aspernatur vel perferendis
doloremque facere reiciendis illum eaque laborum, voluptatum, quos minus doloremque facere reiciendis illum eaque laborum, voluptatum, quos minus omnis
omnis dicta. dicta.</p>
Headings
# Text <h1>Text</h1>
## Text <h2>Text</h2>
### Text <h3>Text</h3>
#### Text <h4>Text</h4>
##### Text <h5>Text</h5>
###### Text <h6>Text</h6>
Emphasis
**Strong** or __strong__ <strong>Strong</strong>
*Emphasis* or _emphasis_ <em>Emphasis</em>
~~Strikethrough~~ <del>Strikethrough</del>
Links
[MTE](https://www.maketecheasier.com/) <a href=”https://www.maketecheasier.com/”>MTE</a>
[MTE](https://www.maketecheasier.com/ “Search”) <a href=”https://www.maketecheasier.com/” title=”Search”>MTE</a>
[mte]:https://www.maketecheasier.com/ “Search”[MTE][mte] <a href=”https://www.maketecheasier.com/” title=”Search”>MTE</a>
<https://www.maketecheasier.com> <a href=”https://www.maketecheasier.com”>https://www.maketecheasier.com</a>
Named Anchors
[Chapter 1](#chapter-1) <a href=”#chapter-1″>Chapter 1</a>
[Chapter 2](#chapter-2) <a href=”#chapter-2″> Chapter 2</a>
[Chapter 3](#chapter-3) <a href=”#chapter-3″>Chapter 3</a>
Images
![Alt Text](/path/to/img.jpg) <img src=”/path/to/img.jpg” alt=”Alt Text” />
![Alt Text](/path/to/img.jpg “Title”) <img src=”/path/to/img.jpg” alt=”Alt Text” title=”Title”/>
[img1]: /path/to/img.jpg “Title” ![Alt Text] [img1] <img src=”/path/to/img.jpg” alt=”Alt Text” title=”Title”/>
Tables
<table>
<tr>
<th>Company</th>
<th>Tagline</th>
</tr>
<tr> <td>Google</td> <td>be evil </td>
| Company | Tagline |
</tr>
| ——| ————————————–|
<tr>
| Google | Don’t be evil |
<td>Nike</td>
| Nike | Just do it |
<td>Just do it</td>
| Reddit | frontpage of the internet |
</tr>
<tr>
<td>Reddit</td>
<td>Frontpage of the Internet</td>
</tr>
</table>
Horizontal Rule
*** <hr />
––– <hr />
Inline Code
use `<header>` instead of `<div id=”header”>` use <code><header></code> instead of <code><div id=”header”></code>
Code Blocks
``` <pre><code>section {
section { oat: left;
oat: left; margin: 0 auto;
margin: 0 auto; }
}` ` ` </code></pre>

Copyright © 2021 Make Tech Easier For more cheat sheets, visit https://www.maketecheasier.com/cheatsheet/
fl
fl

Lists
<ul><li>Android</li>
Unordered List <li>Windows</li>
  <li>Linux
* Android <ul>
* Windows <li>Ubuntu</li>
* Linux <li>Linux Mint</li>
  * Ubuntu </ul>
  * Linux Mint </li>
</ul>
<ol>
<li>First</li>
Ordered List
<li>Second</li>
 
<li>Third
1. First
<ol>
2. Second
<li>Alpha</li>
3. Third
<li>Beta</li>
  1. Alpha
</ol>
  2. Beta
</li>
</ol>
Blockquotes
<blockquote>
> make tech
<p>make tech easier</p>
> easier
</blockquote>
<blockquote>
> make tech easier <p>make tech easier</p>
</blockquote>
<blockquote>
<p>Level One</p>
> Level One <blockquote>
> <p>Level Two</p>
> > Level Two <blockquote>
>> <p>Level Three</p>
> > > Level Three </blockquote>
</blockquote>
</blockquote>

Copyright © 2021 Make Tech Easier For more cheat sheets, visit https://www.maketecheasier.com/cheatsheet/













You might also like