How to add class in image markdown in Ghost?

前端 未结 5 1095
被撕碎了的回忆
被撕碎了的回忆 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条回答
  •  萌比男神i
    2021-02-07 06:12

    in ghost the file post.hbs rendering de {{content}} whit class .kg-card-markdown u can use css to whit sass

    .kg-card-markdown { 
      img{
        @extend .img-responsive;
      } 
    } 
    

提交回复
热议问题