Headlines
## Headline 1
### Headline 2
####### Headline 6
## Headline 1 #
Headline 1
==========
Lists
* Red
* Green
* Blue
+ Red
+ Green
+ Blue
* Red
* Green
* Blue
* Sublist item
* Sublist item
with multiple lines
1. Red
2. Green
3. Blue
1. Sublist item 1
1. Sublist item 2
- [ ] Checklist item 1
- [ ] Checklist item 2
- [x] Checked checklist item
Links
You can always create automatic links:
http://example.com
= http://example.com
You can give your links a description:
[Description](http://example.com)
= Description
You can create reference style links:
[Description][id]
= Description
Then define the reference anywhere in the document:
[id]: http://example.com/ "Optional Title Here"
Open links in new window:
[Description](http://example.com|blank)
= Description
Inline styles
*single asterisks for italic text*
_single underscores for italic text_
**double asterisks for bold text**
__double underscores for bold text__
~~Strikethough text~~
Tables
| Left-aligned | Center-aligned | Right-aligned |
| :--- | :---: | ---: |
| git status | git status | git status |
| git diff | git diff | git diff |
Horizontal Rules
* * *
***
*****
- - -
---------------------------------------
_ _ _
Code
```
var codeBlock = isCodeBlock();
function isCodeBlock() {
return true;
}
```
~~~
var codeBlock = isCodeBlock();
function isCodeBlock() {
return true;
}
~~~
Intend code with four spaces
This is a
code bloxk
You can also write `inline code` like this.
Block quotes
> This is a blockquote with one paragraph. Lorem ipsum dolor sit amet,
> consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
> Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
Backslash Escapes
\ backslash
` backtick
* asterisk
_ underscore
{'} curly braces
[] square brackets
() parentheses
## hash mark
+ plus sign
- minus sign (hyphen)
. dot
! exclamation mark