Toggle hide image

Using markdown it looks like this:

Screenshot

![image-8-2](http://blog.arturofm.com/content/images/....png)

<details><summary>Screenshot</summary>
<p>
![image-8-2](http://blog.arturofm.com/content/images/....png)
</p>
</details>

How ever when I do that the toggle works but the image inside doesn’t display, how can I do this?

Thanks

Hi @afern247,

the only fix i can offer at the top of my head is using the <img> tag

So in your case it would be something like:

<details><summary>Screenshot</summary>
<img src="/content/images/....png" alt="image-8-2">
</details>

Which ends up looking like this:

Screenshot ![](upload://ccGmt8vJK8ex673k5NDoFEzFqrW.gif)

that can work, thanks bud