Metadata-Version: 1.1
Name: word2html
Version: 0.1.0
Summary: A quick and dirty script to convert a Word (docx) document to html.
Home-page: https://github.com/bradmontgomery/word2html
Author: Brad Montgomery
Author-email: brad@bradmontgomery.net
License: MIT
Description: Convert a Word Doc to html
        ==========================
        
        
        To install, run:
        
            pip install word2html
        
        This will give you a command-line script, which you can run:
        
            $ word2html /path/to/MyGloriousDoc.docx
        
        This will give you a new file, `/path/to/MyGloriousDoc.html`, that's (hopefully)
        decent-looking html.
        
        
        Notes
        -----
        
        While this code is MIT-licensed, it uses boty pypandoc and pytidylib, both of
        which depend on other software that may not be MIT-licensed and must be installed
        for this to work.
        
        * [pytidylib](https://pypi.python.org/pypi/pytidylib/) is available under the
          MIT license, and [Tidy](http://tidy.sourceforge.net/#license) is available
          under an MIT-like license
        * [pypandoc](https://pypi.python.org/pypi/pypandoc/) is available under the MIT
          license, while [Pandoc](http://pandoc.org/) is released under the GPL.
        
        
Keywords: word to html
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Text Processing
Classifier: Topic :: Utilities
