Metadata-Version: 2.4
Name: word2html
Version: 0.4.0
Summary: A quick and dirty script to convert a Word (docx) document to html.
Project-URL: Homepage, https://github.com/bradmontgomery/word2html
Author-email: Brad Montgomery <brad@bradmontgomery.net>
License: MIT
License-File: LICENSE.txt
Keywords: html,to,word
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Text Processing
Classifier: Topic :: Utilities
Requires-Python: >=3.12
Requires-Dist: pypandoc>=1.16.2
Requires-Dist: pytidylib>=0.3.2
Description-Content-Type: text/markdown

# 🌟 Convert a Word Doc to html

## 🚀 Quick Start with uvx

The easiest way to run word2html without installing is using `uvx`:

    uvx word2html /path/to/MyGloriousDoc.docx

This will give you a new file, `/path/to/MyGloriousDoc.html`, that's (hopefully)
decent-looking html.

## 💾 Installation

To install with uv:

    uv tool install word2html

Or with pip:

    pip install word2html

Then run:

    word2html /path/to/MyGloriousDoc.docx

## 🧪 Note on tests & versions

- This project has NO TESTS! (feel free to add some of you think it should).
- This project requires Python 3.12 or greater

## 📝 Note on Licenses

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.

## ⭐ Star History

This project _really_ started out as a joke -- although this is something I've done too many times. I'm always
amazed at how many people have starred this repo. 🤩

<a href="https://www.star-history.com/#bradmontgomery/word2html&type=date&legend=top-left">
 <picture>
   <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=bradmontgomery/word2html&type=date&theme=dark&legend=top-left" />
   <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=bradmontgomery/word2html&type=date&legend=top-left" />
   <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=bradmontgomery/word2html&type=date&legend=top-left" />
 </picture>
</a>
