In Ghost, the markdown for image is
![alt](src)
Is there a hidden format for adding a class in the img
tag? Or is this feature not in Ghost yet?
I wanted to have a result like this:
<img src="src" alt="alt" class="img-thumbnail">
I don't want to use the html markup. I really need to achieve this using markdown. Please help..
pandoc
used with option--self-contained
, that is when image gets embedded as a base64. – Lucila