Markdown Tips

  1. Headings
  2. Line Breaks
  3. Emphasis
  4. Blockquotes
  5. Lists
  6. Code
  7. Horizontal Rules
  8. Links

Headings

Markdown Output
# Heading 1

Heading 1

## Heading 2

Heading 2

### Heading 3

Heading 3

#### Heading 4

Heading 4

##### Heading 5
Heading 5
###### Heading 6
Heading 6

And more ...

Heading 1
=========

Heading 2
---------

Line Breaks

End line with two or more spaces

This is first line.  
This is the second line

This is first line.
This is the second line

Emphasis

Bold

Markdown Output
Here is **bold** text Here is bold text
Here is __bold__ text Here is bold text
Here is b**ol**d text Here is bold text

Italic

Markdown Output
Here is *italic* text Here is italic text
Here is _italic_ text Here is italic text
Here is i*tali*c text Here is italic text

Bold and Italic

Markdown Output
Here is ***bold and italic*** text Here is bold and italic text
Here is ___bold and italic___ text Here is bold and italic text
Here is **_bold and italic_** text Here is bold and italic text
Here is __*bold and italic*__ text Here is bold and italic text
Here is bold***and***italic text Here is boldanditalic text

Strikethrough

Markdown Output
Here is ~~strikethrough~~ text Here is strikethrough text

Blockquotes

Single Line Blockquote

> This is Blockquote

This is Blockquote

Multiple Line Blockquote

> This is Blockquote
>
> Here is second line 

This is multiline Blockquote

Here is second line

Nested Blockquotes

> This is multiline Blockquote
>
>> Here is nested Blockquote

This is multiline Blockquote

Here is nested Blockquote

Blockquotes with other elements

> #### Some heading
>
> - Some list item 1
> - Some list item 2
> - ...

Some heading

  • Some list item 1
  • Some list item 2
  • ...

Lists

Ordered Lists

1. First item
2. Second item
3. ...

1. First item
1. Second item
1. ...

1. First item
5. Second item
9. ...
  1. First item
  2. Second item
  3. ...
1. First item
2. Second item
    1. First sub item
    2. Second sub item
3. ...
  1. First item
  2. Second item
    1. First sub item
    2. Second sub item
  3. ...

Unordered Lists

- First item
- Second item
- ...

* First item
* Second item
* ...

+ First item
+ Second item
+ ...
  • First item
  • Second item
  • ...
- First item
- Second item
    - First sub item
    - Second sub item
- ...
  • First item
  • Second item
    • First sub item
    • Second sub item
  • ...

Mixed Lists

1. First item
2. Second item
    - First sub item
    - Second sub item
3. ...
  1. First item
  2. Second item
    • First sub item
    • Second sub item
  3. ...

Task Lists

- [x] First item
- [x] Second item
- [ ] Third item
- [ ] ...
  • First item
  • Second item
  • Third item
  • ...

Code

Here is one line code block

Here is multiline
code block

Horizontal Rules

***

---

___

Links

Markdown Output
[Github](https://github.com) Github
[Github](https://github.com "Tooltip") Github
<https://github.com> https://github.com
![Robot Image](images/robot.jpeg) Robot Image
[Links](#links) Links