Image caption support for Python Markdown
Project description
Markdown Image caption.
Inspired by the probably un-maintained package mdx_figcap
Usage:
Make sure you have markdown installed.
Define an image with caption in your markdown.
![alttext](http://example.com/image.png "caption")
This will be converted to:
<span class="img_container center" style="display: inline-block;">
<img alt="test" src="http://example.com/image.png" style="display:block; margin-left: auto; margin-right: auto;" title="caption" />
<span class="img_caption" style="display: block; text-align: center;">caption</span>
</span>
Why no figure tag implementation ?
The figure tag is a block level element. The image element is an inline element. This difference breaks the attribute extension.
So ![alttext](http://example.com/image.png "caption"){: .center}
would not work if a figure was used.
Installation
pip install markdown-image-caption
add the plugin to your markdown
import markdown
parser = markdown.Markdown(extensions=["markdown_image_caption.plugin"])
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for markdown_image_caption-0.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04229aa960e2d2924d37123427eb4c27be0e3c46529d70b008f391ac4a72783b |
|
MD5 | df738e89b938e28ac5befe972652c4ea |
|
BLAKE2b-256 | f97dd9e8ca133406b6b332b345353f8cab8bba82e74a01c6e4ef99c7a839a90f |