Metadata-Version: 2.1
Name: docums-img2fig-plugin
Version: 0.9.3
Summary: A Docums plugin that converts markdown encoded images into <figure> elements.
Home-page: https://github.com/khanhduy1407/docums-img2fig-plugin
Author: NKDuy
Author-email: kn145660@gmail.com
License: MIT
Description: # Docums Img2Fig Plugin
        
        This [Docums](https://khanhduy1407.github.io/docums) plugin converts markdown encoded images like
        
        ```
        ![An image caption](\assets\images\my-image.png)
        ```
        
        into 
        
        ```html
        <figure class="figure-image">
          <img src="\assets\images\my-image.png" alt="An image caption">
          <figcaption>An image caption</figcaption>
        </figure>
        ```
        
        ## Requirements
        
        This package requires Python >=3.5 and Docums version 1.0.0.0 or higher.  
        
        ## Installation
        
        Install the package with pip:
        
        ```cmd
        pip install docums-img2fig-plugin
        ```
        
        Enable the plugin in your `docums.yml`:
        
        ```yaml
        plugins:
            - search
            - img2fig
        ```
        
        **Note:** If you have no `plugins` entry in your config file yet, you'll likely also want to add the `search` plugin. Docums enables it by default if there is no `plugins` entry set, but now you have to enable it explicitly.
        
        More information about plugins in the [Docums documentation](https://khanhduy1407.github.io/docums/user-guide/plugins/)
        
Keywords: docums python markdown
Platform: UNKNOWN
Requires-Python: >=3.5
Description-Content-Type: text/markdown
