Metadata-Version: 1.1
Name: syntex
Version: 0.8.0
Summary: Plain text formatting syntax for generating HTML.
Home-page: https://github.com/dmulholland/syntex
Author: Darren Mulholland
Author-email: UNKNOWN
License: Public Domain
Description: 
        Syntex
        ======
        
        Syntex is (yet another) lightweight markup language for generating HTML 
        from plain text. It's implemented in Python 3 and can be used both as a 
        command line script and as a Python library.
        
        On the command line::
        
            $ syntex < input.txt > output.html
        
        As a Python library::
        
            import syntex
            html, meta = syntex.render(text)
        
        See the module's Github homepage (https://github.com/dmulholland/syntex) 
        for further details.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: License :: Public Domain
Classifier: Topic :: Text Processing :: Markup :: HTML
