69 lines
1.1 KiB
Plaintext
69 lines
1.1 KiB
Plaintext
Text formatting
|
|
------------------------------------------------------------
|
|
|
|
*italic* _italic_
|
|
|
|
**bold** __bold__
|
|
|
|
`code`
|
|
|
|
superscript^2^
|
|
|
|
subscript~2~
|
|
|
|
Headings
|
|
------------------------------------------------------------
|
|
|
|
# 1st Level Header
|
|
|
|
## 2nd Level Header
|
|
|
|
### 3rd Level Header
|
|
|
|
Lists
|
|
------------------------------------------------------------
|
|
|
|
* Bulleted list item 1
|
|
|
|
* Item 2
|
|
|
|
* Item 2a
|
|
|
|
* Item 2b
|
|
|
|
1. Numbered list item 1
|
|
|
|
1. Item 2. The numbers are incremented automatically in the output.
|
|
|
|
1. Item 3
|
|
|
|
1. Item 3a
|
|
|
|
1. Item 3b
|
|
|
|
Links
|
|
------------------------------------------------------------
|
|
|
|
<http://example.com>
|
|
|
|
[linked phrase](http://example.com)
|
|
|
|
Images
|
|
------------------------------------------------------------
|
|
|
|
|
|
```markdown
|
|
![](http://example.com/logo.png)
|
|
|
|
![optional caption text](path/to/img.png)
|
|
```
|
|
|
|
Tables
|
|
------------------------------------------------------------
|
|
|
|
First Header | Second Header
|
|
------------- | -------------
|
|
Content Cell | Content Cell
|
|
Content Cell | Content Cell
|
|
Reference Style Links and Images
|