On some pages, you can use markdown with a few custom extensions to format your text.
To italicize text, use the asterisk symbol.
*italic*
To bold text, use the double asterisk symbol.
**bold**
To bold and italicize text, use the triple asterisk symbol.
***bold and italic***
To create a blockquote, use the > symbol.
> This is a blockquote
This is a blockquote
To create a header, use the hash symbol followed by the header text. You can create headers up to level 6. each level is represented by the number of hash symbols.
# Header 1
## Header 2
### Header 3
To create a language header, use the hash symbol followed by the Language Code (Set 1), in backticks. Language headers are used to display different content based on the user's language settings. on V3 export, this would be converted to language specific creator notes. if the user's language is not available, the english content will be displayed.
# `en`
English Description
# `de`
Deutsche Beschreibung
To create a list, use the asterisk symbol followed by the list item. you can also nest lists by adding a tab before the asterisk.
- Item 1
- Item 2
- Item 2.1
- Item 2.2
To create an ordered list, use the number followed by a dot and a space.
1. Item 1
2. Item 2
1. Item 2.1
2. Item 2.2
To create a link, use the square brackets followed by the link text and the link in parentheses. some links may be trimmed for security reasons.
[example](https://example.com)
To create a folding section, use the triple colon symbol followed by the title of the folding section. the content of the folding section should be on the next line. to close the folding section, use the triple colon symbol.
:::Folding Title
Folding Content
:::