Metadata-Version: 2.1
Name: html-generators
Version: 1.7.1
Summary: Functional, streaming approach to HTML generation
Home-page: https://github.com/quadrant-newmedia/html_generators
Author: Alex Fischer
Author-email: alex@quadrant.net
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# html_generators

TODO - explain how to use

## Escaping
In general, anything you pass as content or an attribute of an Element will be escaped.

The only exceptions are:
- Style
- Script
- Comment

Content passed to these nodes will NOT be escaped (since the escaping rules for them are more relaxed, and you often want/need to put literal '<' or '>' characters in them). You should never pass untrusted user content to these generators. 

In addition, any content passed to MarkSafe will not be escaped.


