Text can be styled using simple inline syntax.
Text styles
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
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
# AutomaticallyMau output
- Lists can be
- Ordered
- Or unordered
- Both with multiple levels
And can be interrupted
- And restarted
- 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.