An Attribute class to be used with pandocfilters
Project description
This is a simple parser / emitter for pandoc block attributes, intended for use with pandocfilters.
It can read and write attributes in any of these formats: - markdown - html - dictionary - pandoc
Installation:
pip install pandoc-attributes
Usage:
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']]]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pandoc-attributes-0.1.tar.gz
(1.2 kB
view hashes)