RisuRealm

RisuRealm Formatting Guide

On some pages, you can use markdown with a few custom extensions to format your text.

Italic

To italicize text, use the asterisk symbol.

Example

*italic*

Result

italic

Bold

To bold text, use the double asterisk symbol.

Example

**bold**

Result

bold

Bold and Italic

To bold and italicize text, use the triple asterisk symbol.

Example

***bold and italic***

Result

bold and italic

Blockquotes

To create a blockquote, use the > symbol.

Example

> This is a blockquote

Result

This is a blockquote

Headers

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.

Example

# Header 1
## Header 2
### Header 3

Result

Header 1

Header 2

Header 3

Language Specific Headers

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.

Example

# `en`
English Description
# `de`
Deutsche Beschreibung

Result (English)

English Description

Result (German)

Deutsche Beschreibung

Unordered List

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.

Example

- Item 1
- Item 2
- Item 2.1
- Item 2.2

Result

  • Item 1
  • Item 2
    • Item 2.1
    • Item 2.2

Ordered List

To create an ordered list, use the number followed by a dot and a space.

Example

1. Item 1
2. Item 2
1. Item 2.1
2. Item 2.2

Result

  1. Item 1
  2. Item 2
    1. Item 2.1
    2. Item 2.2

Links

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

[example](https://example.com)

Result

Folding

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.

Example

:::Folding Title
Folding Content
:::

Result

Folding Title Folding Content