Spoiler create

Hi all. Can you tell me how to make spoilers?

Does this require a plugin or is there markdown code? Unfortunately I couldn’t find it in the faq.

currently you will need to use a plugin called Admonition to use spoiler. The syntax is something like this:

[[spoiler | Title]]
| content to be spoiler here.  **markdown** is supported.

more info is in the github readme here: libeanim/inkdrop-admonition: An Inkdrop plugin that allows to add block-styled side content to your notes.

Hi @Artem_Palukin
For a basic spoiler you can also use the HTML standard. There is no need for a plugin for this. These also work in the mobile version. (Android)

<details>
  <summary><b>Spoiler</b></summary>
  Content
</details>

1 Like

I totally forgot that you can also use html for that.

1 Like