Skip to content

Add caption for images in the posts from title attribute

License

Notifications You must be signed in to change notification settings

pivaldi/hexo-image-caption2

 
 

Repository files navigation

hexo-image-caption

Auto adding caption for images with alt attribute.

npm package npm package

Installation

npm install --save hexo-image-caption

Usage

adding following section to your hexo site _config.yml file to enable and config plugin.

# add caption for iamges
image_caption:
  enable: true #false to disable
  class_name: #if you wanna customize the style for the caption,you can assign a class name, default is 'image-caption'

How it works

This extension takes the alt attribe as the cation for images.

For example:

![description](xxxx.jpg)

the result will be:

<img src="xxxx.jpg" alt="description">
<span class="image-caption">description</span>

Credits

wayou

License

MIT

About

Add caption for images in the posts from title attribute

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%