Markdown Cheat Sheet

Headers

#H1

##H2

###H3

####H4

#####H5

######H6

H1

H2

H3

H4

H5
H6

Emphasis

Italics, with *asterisks* or _underscores_.

Strong emphasis, aka bold, with **asterisks** or __underscores__.

Combined emphasis with **asterisks and _underscores_**.

Strikethrough uses two tildes. ~~Scratch this.~~

Emphasis, aka italics, with asterisks or underscores.

Strong emphasis, aka bold, with asterisks or underscores.

Combined emphasis with asterisks and underscores.

Strikethrough uses two tildes. Scratch this.

Paragraph Line Breaks

Paragraphs are separated by empty lines. To create a new paragraph, press <return> twice.

Paragraph 1 Paragraph 2

Single Line Breaks

Single line breaks are separated by two spaces.

Paragraph 1
Paragraph 2

Lists

Unordered

* Item 1
* Item 2
* Item 3
    * Item 3a
    * Item 3b
    * Item 3c

  • Item 1
  • Item 2
  • Item 3
    • Item 3a
    • Item 3b
    • Item 3c

Ordered

1. Step 1
2. Step 2
3. Step 3

1. Step 3.1
2. Step 3.2
3. Step 3.3

  1. Step 1
  2. Step 2
  3. Step 3
    1. Step 3.1
    2. Step 3.2
    3. Step 3.3

Links

![text](URL)

To learn about things to do in Maine, visit ![MaineTourism.com](https://visitmaine.com).

 

To learn about things to do in Maine, visit MaineTourism.com.

Images

![alt text](image URL)

Maine icon ![maine icon](https://visitmaine.com/images/maine-icon.png)

Maine icon

You can also use HTML to position an image.

Maine icon <img src=’https://visitmaine.com/images/maine-icon.png’ alt=’maine icon’  width=’41’  height=’51’  style=’text-align: right;’ />

Tables

Colons can be used to align columns.

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |

Colons can be used to align columns.

TablesAreCool
col 3 isright-aligned$1600
col 2 iscentered$12
zebra stripesare neat$1

Blockquotes

> Use the right arrow to create a blockquote. You can put **Markdown** into a blockquote.

Use the right arrow to create a blockquote. You can put Markdown into a blockquote.

Horizontal Rule

Three or more dashes creates a horizontal rule.

– – –

Three or more dashes creates a horizontal rule.

_______________________________________