October 31, 2022
Cecil 7.26.0 released
Features
Create caption for images and embed links having a title
The optional title can be used to create a caption (figcaption
) automatically by enabling the caption
option.
Example:
![](/images/img.jpg "Title")
Is converted to:
<figure>
<img src="/image.jpg" title="Title">
<figcaption>Title</figcaption>
</figure>
Release notes on GitHub