Posted 2019-03-13 with tags Reference, Markdown

Syntax Alternate Syntax Result
*Italic* _Italic_ Italic
**Bold** __Bold__ Bold
# Heading 1 Heading 1
=========

Heading 1

## Heading 2 Heading 2
---------

Heading 2

[Link](http://example.com) [Link][1]

[1]: http://example.come
Link
![Image](http://url/image.png) ![Image][1]

[1]: http://url/image.jpg
Test Markdown image.
> Blockquote  
Blockquote

* list item
* list item
* list item

- list item
- list item
- list item

  • list item
  • list item
  • list item

1. One
2. Two
3. Three

1) One
2) Two
3) Three

  1. One
  2. Two
  3. Three
HR

---
HR

***
HR
`Inline code` with backticks   Inline code with backticks
```
# code block
print '3 backticks or'
print 'indent 4 spaces'
```
····# code block
····print '3 backticks or'
····print 'indent 4 spaces'
# code block
print '3 backticks or'
print 'indent 4 spaces'