Coverage for tdom / __init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-05-03 21:23 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-05-03 21:23 +0000
1from markupsafe import Markup, escape
3from .processor import html, svg
5# We consider `Markup` and `escape` to be part of this module's public API
7__all__ = [
8 "Markup",
9 "escape",
10 "html",
11 "svg",
12]