Hello there!

This site is part of an ongoing project created by me that aims to facilitate sharing academic content by implementing a live markdown editor with powerful sharing capabilities. It is not available to the public yet.

This page serves as an example of what this website creator is capable of. It can render markdown language, which is plain text with minimal but powerful formatting options.

We can render inline math using such as . Or

I also defined some common environments such as:

Theorem 1.

Here goes the statement of a theorem

These can be nested, cited, automatically numbered, etc.

My favorite feature is link previewing. For example, hover your mouse over Cantor’s theorem.


We can also write code formatted according to specific languages:

# This is python
from sympy import isprime
for i in range(k):
	print(isprime(k))
-- This is SQL
graphs( id INTEGER PRIMARY KEY, graph6 TEXT NOT NULL, iso_invariant TEXT NOT NULL, num_nodes INTEGER NOT NULL, num_edges INTEGER NOT NULL, is_connected BOOLEAN, is_tree BOOLEAN, is_local BOOLEAN, is_global BOOLEAN, fer_group BLOB, UNIQUE(graph6))