Metadata-Version: 2.1
Name: markdown-verse
Version: 0.1.3
Summary: Markdown extension for verse
Home-page: https://github.com/makyo/markdown-verse
Author: Madison Scott-Clary
Author-email: makyo@drab-makyo.com
License: UNKNOWN
Description: markdown\_verse
        ==============
        
        Python Markdown extension for wrapping verse
        
        ```markdown
        Hello World
        ===========
        
        '''
        Arctic fox's den
        adorned with flowers and snow
        garden in winter
        '''
        ```
        
        Leads to:
        
        ```html
        <h1>Hello World</h1>
        <p><div class="verse">Arctic fox's den
        adorned with flowers and snow
        garden in winter</div></p>
        ```
        
        You can also specify the tags to wrap the verse block:
        
        ```python
        markdown(source, extensions=[VerseExtension(
            tag_tuple=('<verse>', '</verse>'))])
        ```
        
        with the above markdown would lead to:
        
        ```html
        <h1>Hello World</h1>
        <p><verse>Arctic fox's den
        adorned with flowers and snow
        garden in winter</verse></p>
        ```
        
        Todo
        ----
        
        Get rid of the errant paragraph tags
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
