/plume/incubator/

Making collapsible texts.

You can make collapsible text within some Markdown editors, including this one, using the <details HTML tag. I use them for image descriptions, spoilers, and some other situations.

<details>
  <summary>Collapsible text</summary>
Whatever text you want. Markdown formatting is fully capable in this.

## So titles...

<h3> Titles through HTML tags </h3>

**Bold texts**, *italic texts* ***and so on*** will all work here.

<details>
  <summary>You can even put collapsible text within your collapsible texts.</summary>

Just don't forget to add another `</details>` after the end of this collapsible text to properly close the first one otherwise, things get messy.

</details>

</details>

In practice

Collapsible text Whatever text you want. Markdown formatting is fully capable in this.

So titles...

Titles through HTML tags

Bold texts, italic texts and so on will all work here.

You can even put collapsible text within your collapsible texts.

Just don't forget to add another </details> after the end of this collapsible text to properly close the first one otherwise, things get messy.