Markdown: paragraph on images

Another option although it’s not optimal, is you can add a class to the image that provides a negative top/bottom margin to offset any paragraph tag.

![](yourimage.jpg?classes=p-offset

and then for your CSS:

.p-offset {
 margin: -15px 0
}