Hi,
if I use the <figure>-tag in the markdown-editor to wrap an image to give the image a description with <figcaption> for example it will prevent img-loading.
Example-code:
<figure>
![](img.jpg)
<figcaption>Image Description</figcaption>
</figure>
Instead of an <img>-tag there will be just the markdown-code ![](img.jpg)
in the frontend.
Thanks!