Markdown Guide

Markdown is a lightweight and easy-to-use syntax

Headers

Markdown

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

Output

This is an <h1> tag

This is an <h2> tag

This is an <h6> tag

Emphasis

Markdown

*This text will be italic*

_This will also be italic_

**This text will be bold**

__This will also be bold__

_You **can** combine them_

Output

This text will be italic

This will also be italic

This text will be bold

This will also be bold

You can combine them

Ordered Lists

Markdown

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

Output

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

Unordered Lists

Markdown

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

Output

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

Blockquotes

Markdown

As Kanye West said:

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

Output

As Kanye West said:

We're living the future so

the present is our past.

Inline Code

Markdown

I think you should add padding around the `$string` output.

Output

I think you should add padding around the $string output.