Stackedit/src/data/markdownSample.md

113 lines
1.3 KiB
Markdown
Raw Normal View History

2017-08-04 20:46:06 +00:00
Headers
----------------------------
# Header 1
## Header 2
### Header 3
Styling
----------------------------
*Emphasize* _emphasize_
**Strong** __strong__
~~Mistaken text.~~
> Quoted text.
H~2~O is a liquid.
2^10^ is 1024.
Lists
----------------------------
- Item
* Item
+ Item
1. Item
2. Item
3. Item
Links
----------------------------
A [link](http://example.com).
An image: ![Alt](img.jpg)
Code
----------------------------
Some `inline code`.
```
// A code block
var foo = 'bar';
```
```javascript
// An highlighted block
var foo = 'bar';
```
Tables
----------------------------
Item | Value
-------- | -----
Computer | $1600
Phone | $12
Pipe | $1
| Column 1 | Column 2 |
|:--------:| -------------:|
| centered | right-aligned |
Definition lists
----------------------------
Markdown
: Text-to-HTML conversion tool
Classeur
: French translation for "Binder"
: A Markdown editing app
Footnotes
----------------------------
Some text with a footnote.[^1]
[^1]: The footnote.
Abbreviations
----------------------------
Markdown converts text to HTML.
*[HTML]: HyperText Markup Language
LaTeX math
----------------------------
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\,.
$$