How to add class in image markdown in Ghost?

前端 未结 5 1012
被撕碎了的回忆
被撕碎了的回忆 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:22

    You can add them through jQuery with the following code before the body end tag on the default.hbs file

    $('img').addClass('img-thumbnails');
    

提交回复
热议问题