mkdocs-img2fig-plugin icon indicating copy to clipboard operation
mkdocs-img2fig-plugin copied to clipboard

A MkDocs plugin that converts markdown encoded images into <figure> elements.

Results 4 mkdocs-img2fig-plugin issues
Sort by recently updated
recently updated
newest added

- support attr_list as promote by @mike-scott https://github.com/stuebersystems/mkdocs-img2fig-plugin/pull/5, I fix a bug inside his PR and add test - unfortunately, I don't know how to get `use_directory_url`'s value even I...

This is limited to direct attribute support as it will be included in the tag directly: { align="right" class="something" } becomes: You cannot use: {: .class} as this becomes: Signed-off-by:...

With the following directory structure: ``` docs/ - folder/page.md - sys.png mkdocs.yml ``` And `use_directory_urls: true` in `mkdocs.yml`, the images break when enabling this plugin. The src path is not...

I have a feature request. I would like the option to specify that some images in my page should not be converted to figures. For example: ```markdown [![Actions Status](https://github.com/timvink/mkdocs-print-site-plugin/workflows/pytest/badge.svg)](https://github.com/timvink/mkdocs-print-site-plugin/actions) ![PyPI...

enhancement