In default markdown if I include an image it is always inside a <p>-tag.
My <p>-tag is styled, so that there is a padding on top or bottom.
For my images this rule should be different.
Here is an example, so you can understand:
<p></p>
<p></p>
<p></p>
You have no idea in which Paragraph is the images and in which is the text.
I need something like this:
<p></p>
<div></div>
<p></p>
Or at least
<p></p>
<p class='image'></p>
<p></p>
Is this possible?
