Metadata-Version: 2.4
Name: mkdsecrets
Version: 0.0.2
Summary: Replaces <secret>...</secret> html with an empty span.
Author: Maverick Peppers
License-Expression: MIT
Project-URL: Homepage, https://github.com/TheMaverickProgrammer/python-markdown-secrets
Project-URL: Issues, https://github.com/TheMaverickProgrammer/python-markdown-secrets
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# mkdsecrets
A [Python-Markdown][PYTHON_MARKDOWN] preprocessor extension to convert content wrapped in `<secret></secret>` into `<span class="secret"></span>` elements instead. Effectively deleting the sensitive content entirely and replacing it with a visual HTML element that can be decorated however deemed best via css stylesheets.

View this package on [PyPi][PYPI].

# Installation
```shell
pip install mkdsecrets
```

# Testing
1. Install `pytest` via `pip install pytest`.
1. Enter the `test` directory.
1. Run `python -m pytest`. 

[PYTHON_MARKDOWN]: https://github.com/waylan/Python-Markdown
[PYPI]: https://pypi.org/project/mkdsecrets/
