Hello, world
This is the first post on the new site. The point of this file is to confirm the renderer handles everything I plan to write later.
Inline and display math
Einstein’s famous identity, inline:
A display equation:
A multi-line one:
Code
def fib(n: int) -> int:
a, b = 0, 1
for _ in range(n):
a, b = b, a + b
return a
Links and emphasis
Some italic, some bold, and a link to nothing.