Markdown Test
2025-03-08
Quick test of various markdown features
.
- First item
- Second item
- Alpha
- Beta
- Gamma
- Third item
Something that needs a citation1.
Code Blocks
This should be syntax-highlighted offline on site build, delivered in nice accessible plain HTML.
fib :: Int -> Int
fib 0 = 0
fib 1 = 1
fib n = fib (n - 1) + fib (n - 2)
Latex Math
Also should be rendered offline, served as a big <mathml>
block without any
JS needed on the page.
And inline math: is a pretty good approximation.
-
Footnote for the citation.
Second paragraph. ↩︎