Example Post
This is an example blog post demonstrating the minimal blog structure.
Math Support
Inline math: $E = mc^2$
Display math:
$$\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}$$
Code Support
Here's some inline code: print("Hello, world!")
And a code block:
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
for i in range(10):
print(fibonacci(i))
Images
Images can be included like this:
That's all for now!