Stackedit/src/data/markdownSample.md

130 lines
1.4 KiB
Markdown
Raw Normal View History

2017-08-04 20:46:06 +00:00
Headers
2017-08-06 00:58:39 +00:00
---------------------------
2017-08-04 20:46:06 +00:00
# Header 1
## Header 2
### Header 3
2018-04-16 17:12:26 +00:00
2017-08-04 20:46:06 +00:00
Styling
2017-08-06 00:58:39 +00:00
---------------------------
2017-08-04 20:46:06 +00:00
*Emphasize* _emphasize_
**Strong** __strong__
==Marked text.==
2017-08-04 20:46:06 +00:00
~~Mistaken text.~~
> Quoted text.
H~2~O is a liquid.
2^10^ is 1024.
2018-04-16 17:12:26 +00:00
2017-08-04 20:46:06 +00:00
Lists
2017-08-06 00:58:39 +00:00
---------------------------
2017-08-04 20:46:06 +00:00
- Item
2018-04-16 17:12:26 +00:00
* Item
+ Item
2017-08-04 20:46:06 +00:00
1. Item 1
2. Item 2
3. Item 3
- [ ] Incomplete item
- [x] Complete item
2017-08-04 20:46:06 +00:00
2018-04-16 17:12:26 +00:00
2017-08-04 20:46:06 +00:00
Links
2017-08-06 00:58:39 +00:00
---------------------------
2017-08-04 20:46:06 +00:00
A [link](http://example.com).
An image: ![Alt](img.jpg)
A sized image: ![Alt](img.jpg =60x50)
2017-08-04 20:46:06 +00:00
2018-04-16 17:12:26 +00:00
2017-08-04 20:46:06 +00:00
Code
2017-08-06 00:58:39 +00:00
---------------------------
2017-08-04 20:46:06 +00:00
Some `inline code`.
```
// A code block
var foo = 'bar';
```
```javascript
// An highlighted block
var foo = 'bar';
```
2018-04-16 17:12:26 +00:00
2017-08-04 20:46:06 +00:00
Tables
2017-08-06 00:58:39 +00:00
---------------------------
2017-08-04 20:46:06 +00:00
Item | Value
-------- | -----
Computer | $1600
Phone | $12
Pipe | $1
| Column 1 | Column 2 |
|:--------:| -------------:|
| centered | right-aligned |
2018-04-16 17:12:26 +00:00
2017-08-04 20:46:06 +00:00
Definition lists
2017-08-06 00:58:39 +00:00
---------------------------
2017-08-04 20:46:06 +00:00
Markdown
: Text-to-HTML conversion tool
Authors
: John
: Luke
2017-08-04 20:46:06 +00:00
2018-04-16 17:12:26 +00:00
2017-08-04 20:46:06 +00:00
Footnotes
2017-08-06 00:58:39 +00:00
---------------------------
2017-08-04 20:46:06 +00:00
Some text with a footnote.[^1]
[^1]: The footnote.
2018-04-16 17:12:26 +00:00
2017-08-04 20:46:06 +00:00
Abbreviations
2017-08-06 00:58:39 +00:00
---------------------------
2017-08-04 20:46:06 +00:00
Markdown converts text to HTML.
*[HTML]: HyperText Markup Language
2018-04-16 17:12:26 +00:00
2017-08-04 20:46:06 +00:00
LaTeX math
2017-08-06 00:58:39 +00:00
---------------------------
2017-08-04 20:46:06 +00:00
The Gamma function satisfying $\Gamma(n) = (n-1)!\quad\forall
n\in\mathbb N$ is via the Euler integral
$$
\Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,.
$$