Skip to content

Content

The content of each section should be written as follows:

Standard Content

Previous document format

Previous document format

Example

markdown
Write the content comfortably.
There is no specific style.

Use backticks (`) for `parts` that need to be referenced.
For other formatting, refer to [markdown-it](https://markdown-it.github.io/).
Result

Write the content comfortably.
There is no specific style.

Use backticks () for parts` that need to be referenced.
For other formatting, refer to markdown-it.

Numbered Content

Previous Document Format

Previous Document Format

Example

markdown
For numbered lists, write as follows:

1. First item.
1. Second item.
1. Third item.
Result
  1. First Item.
  2. Second Item.
  3. Third Item.

Body a.b.c.

Previous document format

Previous document format

Example

markdown
If the lists overlap, write as follows.

1. First item.
    1) Content of `1.1)`.
    1) Content of `1.2)`.
1. Second item.
1. Third item.
Result
  1. First item.
    1. Content of 1.1).
    2. Content of 1.2).
  2. Second item.
  3. Third item.

TIP

All ordered lists are displayed with numbers. (a. cannot be displayed like this.)

Note

Previous document format

Previous Document FormatPrevious Document Format

Example

markdown
When a note is needed, select one of the following options according to the situation.

::: info
This is an info box.
:::

::: tip
This is a tip.
:::

::: warning
This is a warning.
:::

::: danger
This is a dangerous warning.
:::

::: details
This is a details block.
:::
Result

NOTE

This is an info box.

TIP

This is a tip.

WARNING

This is a warning.

DANGER

This is a dangerous warning.

Details

This is a details block.

Bullet Points

Previous Document Format

Previous Document Format

Example

markdown
Bullet points are written with `-`, `*`, or `+`.

- Content
    + Additional content
    + Additional content
        * Detailed content
    + Additional content
- Other content
Result
  • Content
    • Additional content
    • Additional content
      • Detailed content
    • Additional content
  • Other content

TIP

You can use -, *, or + interchangeably to represent bullet points, and they will all display as the same bullet point on the screen.