Purpose

The purpose of this file is to show off the functionality of alloypress.

Markdown Support

Alloypress supports the original markdown syntax:

Latex Support

Beyond that, it also supports inline equations via latex2mathml, such as C(St,K,t) or even with dollar signs such as $10, as well as block equations:

C(St,K,t)=StN(d1)Ker(Tt)N(d2)

Syntax Highlighting

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)

Sidenotes

It also supports sidenotessuch as this, which are displayed inline on narrow devices.