MarkDown Cheat Sheet

Published: by Creative Commons Licence

A MARKDOWN CHEAT SHEET

The Basic Markdown Syntax

These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.

:confused: This site is created in Markdown, which is then converted to Html. This means that the code is correct but, might not display correctly here.

Heading

# Heading Number 1
## Heading Number 2
### Heading Number 3

Heading Number 1

Heading Number 2

Heading Number 3

Italics

*this is not italian !*

this is not italian !

Blockquote

> You Talkin to me!
> You must be talkin to me!

You Talkin to me! You must be talkin to me!

List

- Read
- Try
- Repeat
  • Read
  • Try
  • Repeat

Numbered List

1. Eggs
2. Red Peppers
3. Onions
  1. Eggs
  2. Red Peppers
  3. Onions

Code

`my code`

my code

Horizontal Rule

---

[Markdown Guide](https://www.markdownguide.org)

Markdown Guide

Image

![a penguin](https://www.markdownguide.org/assets/images/tux.png)

a penguin


Extended Syntax

More syntax that is not always available. This depends on the Markdown used.

Table

| Item | Desc. |
| one | Item 1 |
| two | Item 2 |
Item Desc.
one Item 1
two Item 2

Fenced Code Block

Three backticks

code block

Three backticks

<?php echo 'Hello, World!'; ?>

Strikethrough

~~Dare you strike me ?~~

Dare you strike me ?

Task Lists are cool

- [x]  I did this thing
- [ ]  I want to do this
- [ ]  Then, I will do this
  • I did this thing
  • I want to do this
  • Then. I will do this

Emoji

Don't forget to leave a star for our service! :star:

Don't forget to leave a star for our service! :star:


See also..

The Markdown Guide The Markdown Guide