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][1] ⋮ [1]: http://url/image.jpg |
![]() |
> Blockquote |
Blockquote |
|
* list item |
- list item |
|
1. One |
1) One |
|
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' |