Metadata-Version: 1.1
Name: markdown-figure
Version: 0.0.1
Summary: Markdown extension which turns images into figures
Home-page: https://github.com/janwh/markdown-figures
Author: Jan Willhaus
Author-email: mail@janwillhaus.de
License: MIT
Description: # markdown-figure
        
        An extension to the [Python Markdown](https://pypi.python.org/pypi/Markdown) package.
        
        The exension wraps all images in the markdown document or text in `<figure>` tags, inserting a `<figcaption>` as well by re-using the `img alt` tag from markdown syntax (text in square brackets).
        
        To install use `pip install markdown-figure` or use the repository `pip install git+https://github.com/janwh/markdown-figure.git`
        
        Then the extension can be used by doing:
        ```python
        
        import markdown
        from mdfigure import FigureExtension
        
        md = markdown.Markdown(extensions=[FigureExtension()])
        
        # Wrap an Image
        md.convert('![my description](image.jpg)')
        ```
        
Keywords: markdown extension html figure
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
