Markdown Toolbox Logo Markdown Toolbox
Home
Blog

Can I create collapsible sections in markdown?

2023-11-29

Creating collapsible sections in Markdown is not supported by standard Markdown syntax. However, if your Markdown processor supports HTML, you can use HTML details and summary tags.

<details>
<summary>Click to expand</summary>
This is a collapsible section.
</details>
Click to expand This is a collapsible section.