mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-14 21:35:03 -05:00
10 lines
269 B
Python
10 lines
269 B
Python
|
from htmlserializer import HTMLSerializer
|
||
|
|
||
|
class XHTMLSerializer(HTMLSerializer):
|
||
|
quote_attr_values = True
|
||
|
minimize_boolean_attributes = False
|
||
|
use_trailing_solidus = True
|
||
|
escape_lt_in_attrs = True
|
||
|
omit_optional_tags = False
|
||
|
escape_rcdata = True
|