Metadata-Version: 2.1
Name: htmlpack
Version: 0.1.2
Summary: Pre-process HTML files for production environments. Strip HTML comments.
Project-URL: Homepage, https://github.com/conormag/htmlpack
Project-URL: Bug Tracker, https://github.com/conormag/htmlpack/issues
Author-email: Conor Maguire <conormag@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# htmlpack
The htmlpack module can be used to help preprocess HTML files for production environments. It can be used to strip HTML comments, minify HTML,
and more.

```
usage: python -m htmlpack [-h] [-s] [-v] [-d] path

positional arguments:
  path                  Path to file or folder

optional arguments:
  -h, --help            show this help message and exit
  -s, --strip-comments  Whether to strip HTML comments (default: False)
  -v, --verbose         Verbose output (default: False)
  -d, --dry-run         Perform a dry run without modifying files (default: False)
```