Turn markdown images into captioned images using <figure>
Project description
markdown-captions
Converts images with alt text to <figure>
with <figcaption>
.
Works with attr_list
extension.
Usage
pip install markdown-captions
md = markdown.Markdown(extensions=['markdown_captions'])
Examples
simple example
![caption](img.jpg)
![caption2](img2.jpg)
<p>
<figure><img src="img.jpg" /><figcaption>caption</figcaption></figure>
<figure><img src="img2.jpg" /><figcaption>caption2</figcaption></figure>
</p>
image class and title
![caption](img.jpg "title"){: .class1 }
<figure class="class1"><img src="img.jpg" title="title" /><figcaption>caption</figcaption></figure>
inline captioned images
<style>
.inline {
display: inline-block;
}
</style>
![caption](img.jpg){: .inline }
![caption2](img2.jpg){: .inline }
<p>
<figure class="inline"><img src="img.jpg" /><figcaption>caption</figcaption></figure>
<figure class="inline"><img src="img2.jpg" /><figcaption>caption2</figcaption></figure>
</p>
images with no alt text are not captioned
![](img.jpg)
<img src="img.jpg" />
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
markdown-captions-1.tar.gz
(2.2 kB
view details)