Text #

It's very easy to make some words **bold** and other words *italic* with Markdown. You can even [link to Google!](http://google.com)

It's very easy to make some words bold and other words italic with Markdown. You can even link to Google!

Headings #

# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag

This is an

tag #

This is an

tag #

This is an
tag #

Emphasis #

*This text will be italic*
_This will also be italic_

**This text will be bold**
__This will also be bold__

_You **can** combine them_

This text will be italic
This will also be italic

This text will be bold
This will also be bold

You can combine them

Lists #

Unordered #

* Item 1
* Item 2
* Item 2a
* Item 2b
  • Item 1
  • Item 2
    • Item 2a
    • Item 2b

Ordered #

1. Item 1
1. Item 2
1. Item 3
1. Item 3a
1. Item 3b
  1. Item 1
  2. Item 2
  3. Item 3
    1. Item 3a
    2. Item 3b

Images #

![Thumbnail](./featured-thumbnail.jpg)
Format: ![Alt Text](./featured-thumbnail.jpg)

GitHub Logo
Format: Alt Text

Links #

http://github.com - automatic!
[GitHub](http://github.com)

http://github.com - automatic!
GitHub

Blogquotes #

As Kanye West said:

> We're living the future so
> the present is our past.

Or with the Cite Tag

> Hello
<cite>Thing 1</cite>

As Kanye West said:

We're living the future so
the present is our past.

Or with the Cite Tag

Hello
Thing 1

Inline Code #

I think you should use an
`<addr>` element here instead.

I think you should use an
<addr> element here instead.

Block Code #

```shell
npm run start #comments
```
npm run start #comments

Tables #

| First Header | Second Header |
| ------------ | ------------- |
| Content from cell 1 | Content from cell 2 |
| Content in the first column | Content in the second column |
| Content in the first column | Content in the second column |
| Content in the first column | Content in the second column |
First Header Second Header
Content from cell 1 Content from cell 2
Content in the first column Content in the second column
Content in the first column Content in the second column
Content in the first column Content in the second column

Custom Tags #

Details / Summary Tags #

{% details 'Reasons to create content', 'font-size:2em;', 'open' %}

- This
- Is
- A
- Open
- List

{% details 'Nested Reason' %}

- This
- Is
- A
- Closed
- List
{% enddetails %}

{% enddetails %}
Reasons to create content
  • This
  • Is
  • A
  • Open
  • List
Nested Reason
  • This
  • Is
  • A
  • Closed
  • List