How to add class in image markdown in Ghost?

前端 未结 5 1016
被撕碎了的回忆
被撕碎了的回忆 2021-02-07 05:47

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 G

5条回答
  •  青春惊慌失措
    2021-02-07 06:06

    this is perhaps too obvious but you can put it in any element you wish i.e.

     
    ![](...)

    and then use css inheritance

    .myDiv img { width: 50px; }
    

    since markup in ghost supports html (probably most do) you can also do regular tags as well

提交回复
热议问题