The purpose of this file is to show off the functionality of alloypress
.
Alloypress
supports the original markdown syntax:
Beyond that, it also supports inline equations via latex2mathml
, such as , as well as block equations:
It also supports syntax highlighting for python:
def fizzbuzz(n):
for i in range(1, n+1):
if i % 15 == 0:
print("fizzbuzz")
elif i % 3 == 0:
print("fizz")
elif i % 5 == 0:
print("buzz")
else:
print(i)
It also supports sidenotessuch as this, which are displayed inline on narrow devices.