Note

Welcome to Fizzy Notes

By Fizzy

metasample

Welcome to Fizzy Notes

This is a public sample note used to verify the first notes pipeline.

It supports normal Markdown:

  • lists;
  • bold text;
  • links such as Fizzy Space;
  • code blocks.

It also supports inline math such as a2+b2=c2a^2 + b^2 = c^2.

Block math works too:

k=0nk=n(n+1)2\sum_{k=0}^{n} k = \frac{n(n+1)}{2}
export function square(x: number) {
  return x * x
}