tags: test
# Emphasis
This is bold text
This is italic text
Strikethrough
# Lists
- First ordered list item
- inside a list
- Another item
- but not ordered
- Unorder item 1
- Another one
# Images
Image test:
# Footnotes
Footnote 1 link1.
Footnote 2 link2.
Duplicated footnote reference3.
# Code and Syntax Highlighting
Inline: use the command $ cabal build
to build the project.
Code blocks:
primes :: [Integer]
primes = filterPrime [2..] where
filterPrime (p:xs) =
p : filterPrime [x | x <- xs, x `mod` p /= 0]
Theorem add_assoc : ∀ n m p : nat,
n + (m + p) = (n + m) + p.
Proof.
intros n m p. induction n as [| n' IHn'].
- (* n = 0 *)
reflexivity.
- (* n = S n' *)
simpl. rewrite IHn'. reflexivity.
Qed.
# Mathematics
The expression is inlined.
Math blocks:
# Tables
Colons can be used to align columns.
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
# Blockquotes
Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.