blob: b798b13a4ca2e4bfa72e06f95dfbf0472cff2e68 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 | # Top-level title
## Section
### Subsection
This *emphasized* **strong** `verbatim` markdown.
See this [link](http://example.com/).
Ordered list:
  1. one
  1. two
  1. three
> Blockquote
> is
> for
> citatons.
    Code
    block
    is
    for
    code.
~~Strikeout~~ is Pandoc's extension.
Superscript and subscripts too: H~2~O is a liquid[^1].
2^10^ is 1024.
Math is another Pandoc extension: $E = m c^2$.
[^1]: Sometimes.
 |