A demo of the Mau Markup Language

Some examples of what Mau can do

Text styles

Text can be styled using simple inline syntax.

Mau source

Stars identify *strong* text.

Underscores for _emphasized_ text.

Carets for ^superscript^ and tildes for ~subscript~.

Backticks are used for `verbatim` text.

Mau output

Stars identify strong text.

Underscores for emphasized text.

Carets for superscript and tildes for subscript.

Backticks are used for verbatim text.

Paragraphs

Paragraphs of text can contain style and macros.

Mau source

Paragraphs are separated by empty lines.

Paragraphs can contain macros.
The source code can be found
at [link](https://github.com/Project-Mau/mau).

Mau output

Paragraphs are separated by empty lines.

Paragraphs can contain macros. The source code can be found at https://github.com/Project-Mau/mau.

Variables

Variables can be defined inside and outside Mau documents and used to customise the output.

Mau source

:answer:42

Mau supports variables. The answer is {answer}.

@if answer == 42
This paragraph is rendered conditionally.

Mau output

Mau supports variables. The answer is 42.

This paragraph is rendered conditionally.

Headers and footnotes

Mau has full support for headers and footnotes.

Mau source

= Mau has headers

== Mau has subheaders

[footnote=note]
@@@@
This is a footnote.
@@@@

Paragraphs can contain footnotes[footnote](note).

Mau output

Mau has headers

Mau has subheaders

Paragraphs can contain footnotes[1].

Lists

Mau lists are very flexible and can be easily interrupted and restarted.

Mau source

# Lists can be
# Ordered
** Or unordered
** Both with multiple levels

And can be interrupted

[start=auto]
# And restarted
# Automatically

Mau output

  1. Lists can be
  2. Ordered
    • Or unordered
    • Both with multiple levels

And can be interrupted

  1. And restarted
  2. Automatically

Blocks

Blocks are a powerful structure that can isolate and manipulate the content in different ways.

Mau source

.cite Anonymous
[*quote]
@@@@
Blocks can be used in multiple ways such as quotes.
@@@@

Mau output

Blocks can be used in multiple ways such as quotes.

Anonymous
Mau has many other features like including external content, source code highlighting, block engines, and rich templating options. In this documentation Mau is rendered using this website's templates and CSS, but the possibilities are endless.