# HTML to text
>[html2text](https://github.com/Alir3z4/html2text/) is a Python package that converts a page of `HTML` into clean, easy-to-read plain `ASCII text`.
The ASCII also happens to be a valid `Markdown` (a text-to-HTML format).
## Installation and Setup
```bash
pip install html2text
```
## Document Transformer
See a [usage example](/docs/integrations/document_transformers/html2text).
```python
from langchain_community.document_loaders import Html2TextTransformer
```