File: html_utils.py

package info (click to toggle)
python-kajiki 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 700 kB
  • sloc: python: 4,098; makefile: 115
file content (14 lines) | stat: -rw-r--r-- 333 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
HTML_EMPTY_ATTRS = {
    "checked",
    "disabled",
    "readonly",
    "multiple",
    "selected",
    "nohref",
    "ismap",
    "declare",
    "defer",
}
HTML_OPTIONAL_END_TAGS = {"area", "base", "br", "col", "hr", "img", "input", "link", "meta", "param"}
HTML_REQUIRED_END_TAGS = {"script"}
HTML_CDATA_TAGS = {"script", "style"}