Metadata-Version: 1.0
Name: pandoc-attributes
Version: 0.1.1
Summary: An Attribute class to be used with pandocfilters
Home-page: http://github.com/aaren/pandoc-attributes
Author: Aaron O'Leary
Author-email: dev@aaren.me
License: BSD 2-Clause
Description: This is a simple parser / emitter for pandoc block attributes, intended
        for use with `pandocfilters <https://github.com/jgm/pandocfilters>`__.
        
        It can read and write attributes in any of these formats: - markdown -
        html - dictionary - pandoc
        
        Installation:
        
        ::
        
            pip install pandoc-attributes
        
        Usage:
        
        .. code:: python
        
            from pandocattributes import PandocAttributes
        
            attrs = '#id .class1 .class2 key=value'
            attributes = PandocAttributes(attrs, format='markdown')
            attributes.to_dict()
            >>> {'id': 'id', 'classes': ['class1', 'class2'], 'key'='value'}
        
            attributes.to_html()
            >>> id="id" class="class1 class2" key='value'
        
            attributes.to_pandoc()
            >>> ['id', ['class1', 'class2'], [['key', 'value']]]
        
        
Platform: UNKNOWN
