Using Markdown, how do I center an image and its caption?

前端 未结 7 795
小鲜肉
小鲜肉 2021-01-31 08:08

I want to end up with:

Hello there!

      
      This is an image

Hi!

Where the image and the text This is an image

7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-31 08:18

    If you are using kramdown, you can do this

    Hello there!
    
    {:.center}
    ![cardinal](/img/2012/cardinal.jpg)  
    This is an image
    
    Hi!
    
    .center {
      text-align: center;
    }
    

提交回复
热议问题