Metadata-Version: 1.0
Name: MarkdownHighlight
Version: 0.1.3
Summary: A markdown extension that enables you to create <mark> tag by using ???some text???
Home-page: https://github.com/ribalba/markdown.highlight
Author: Didi Hoffmann
Author-email: didi@ribalba.de
License: Apache License 2.0
Description: markdown.highlight
        ==================
        
        Adds the possibility to use "??? something ???" or "___ something ___" to create a span that looks like <mark>something</mark>
        
        Install through pip:
        
        $ pip install MarkdownHighlight
        
        To enable the MarkdownHighlight package and use it in your markdown generation just add it like so:
        
        ```
        import markdown
        from MarkdownHighlight.highlight import HighlightExtension
        
        result = markdown.markdown(textToRender, output_format="html5", extensions=[HighlightExtension,]) )
        ```
        
Platform: UNKNOWN
