Markdown Toolbox Logo Markdown Toolbox
Home
Blog

Splendor Board Game Splendor Board Game

This is one of my personal favorite games. Build up your gem mines to get discounts and points. A nice balance of objectives with a race for points.

Affiliate Link - As an Amazon Associate I earn from qualifying purchases.

Can I create collapsible sections in markdown?

Wednesday, November 29, 2023

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 expandThis is a collapsible section.