# Formatting in folding spoilers

**URL:** https://meta.discourse.org/t/formatting-in-folding-spoilers/91765
**Category:** UX
**Created:** [7월 7, 2018, 10:18오전 UTC](https://meta.discourse.org/t/formatting-in-folding-spoilers/91765 "2018-07-07T10:18:33Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Ads20000](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ads20000/32/119770_2.png) [@Ads20000](https://meta.discourse.org/u/Ads20000)
#### Post date: [7월 7, 2018, 10:18오전 UTC](https://meta.discourse.org/t/formatting-in-folding-spoilers/91765/1 "2018-07-07T10:18:33Z")

</div>

Could it be possible to make markdown displayable within [folding spoilers](https://meta.discourse.org/t/folding-spoilers/16123/14) (`<details><summary>`)?

E.g.

```plaintext
<details><summary>Previous snapd releases</summary>
## snapd 2.35
:gear: Snapshots ([topic](https ://forum .snapcraft .io/t/1670/11))
:gear: Parallel snap installs (topic?)
:gear: Warnings pipeline ([topic](https ://forum .snapcraft .io/t/2371))
:gear: Interface hooks ([topic](https ://forum .snapcraft .io/t/673))
</details>

```

Should output

## snapd 2.35

⚙ Snapshots ([topic](https ://forum .snapcraft .io/t/1670/11))  
⚙ Parallel snap installs (topic?)  
⚙ Warnings pipeline ([topic](https ://forum .snapcraft .io/t/2371))  
⚙ Interface hooks ([topic](https ://forum .snapcraft .io/t/673))

within a dropdown with a title (imagine the above is inside the dropdown):

> **Previous snapd releases**
>

but instead it outputs:

> **Previous snapd releases**
>
> ## snapd 2.35 :gear: Snapshots ([topic](https ://forum .snapcraft .io/t/1670/11)) :gear: Parallel snap installs (topic?) :gear: Warnings pipeline ([topic](https ://forum .snapcraft .io/t/2371)) :gear: Interface hooks ([topic](https ://forum .snapcraft .io/t/673))

(Would make the links proper but I’m a new user so I can’t)

---

<div class="post-metadata">

### Author: ![Steven](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/steven/32/187890_2.png) [@Steven](https://meta.discourse.org/u/Steven)
#### Post date: [7월 7, 2018, 10:47오전 UTC](https://meta.discourse.org/t/formatting-in-folding-spoilers/91765/2 "2018-07-07T10:47:15Z")

</div>

You need to let one blank line between some of the formatting, especially after le summary and before/after the title

> **Previous snapd releases**
>
> ## snapd 2.35
> 
> ⚙ Snapshots ([topic](https ://forum .snapcraft .io/t/1670/11))  
> ⚙ Parallel snap installs (topic?)  
> ⚙ Warnings pipeline ([topic](https ://forum .snapcraft .io/t/2371))  
> ⚙ Interface hooks ([topic](https ://forum .snapcraft .io/t/673))

```
<details><summary>Previous snapd releases</summary>

## snapd 2.35

:gear: Snapshots ([topic](https ://forum .snapcraft .io/t/1670/11))
:gear: Parallel snap installs (topic?)
:gear: Warnings pipeline ([topic](https ://forum .snapcraft .io/t/2371))
:gear: Interface hooks ([topic](https ://forum .snapcraft .io/t/673))

</details>

```
