Titles

Best used for section headers.

## Titles

Subtitles

Best used for subsection headers.

### Subtitles

Each title and subtitle creates an anchor and appears in the table of contents.

Text Formatting

Common markdown formatting uses **, _, or ~ around text:

StyleHow to write itResult
Bold**bold**bold
Italic_italic_italic
Strikethrough~strikethrough~strikethrough

Combinations like **_bold and italic_** create bold and italic text.

For superscript and subscript, use HTML tags:

Text SizeHow to write itResult
Superscript<sup>superscript</sup>superscript
Subscript<sub>subscript</sub>subscript

Linking to Pages

Create links with [](): [link to google](https://google.com) shows as link to google.

For internal docs, use root-relative paths: [link to text](/content/text). Avoid relative links like [link to text](../text).

You can validate links using our CLI.

Blockquotes

Add > for blockquotes:

Dorothy followed her through many of the beautiful rooms in her castle.

For multiline quotes, use multiple >:

Dorothy followed her through many of the beautiful rooms in her castle.

The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

LaTeX

Use $ for inline LaTeX: $(a^2 + b^2 = c^2)$ renders as (a2+b2=c2)(a^2 + b^2 = c^2).

Use $$ for equation blocks: x[0,1]\exists \, x \notin [0,1]

Line Breaks

Use double enter or <br /> for line breaks:

Paragraph 1

Paragraph 2