Coverage for tdom/__init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.10.7, created at 2025-10-31 17:14 +0000
« prev ^ index » next coverage.py v7.10.7, created at 2025-10-31 17:14 +0000
1from markupsafe import Markup, escape
3from .classnames import classnames
4from .nodes import Comment, DocumentType, Element, Fragment, Node, Text
5from .processor import html
7# We consider `Markup` and `escape` to be part of this module's public API
9__all__ = [
10 "classnames",
11 "Comment",
12 "DocumentType",
13 "Element",
14 "escape",
15 "Fragment",
16 "html",
17 "Markup",
18 "Node",
19 "Text",
20]