Coverage for phml\compiler\steps\__init__.py: 100%
8 statements
« prev ^ index » next coverage.py v6.5.0, created at 2023-04-05 15:06 -0500
« prev ^ index » next coverage.py v6.5.0, created at 2023-04-05 15:06 -0500
1from .loops import step_expand_loop_tags
2from .format import step_ensure_doctype
3from .markup import step_compile_markdown
4from .wrapper import step_replace_phml_wrapper
5from .embedded import step_execute_embedded_python
6from .components import step_add_cached_component_elements, step_substitute_components
7from .conditional import step_execute_conditions
9__all__ = [
10 "step_execute_conditions",
11 "step_substitute_components",
12 "step_execute_embedded_python",
13 "step_replace_phml_wrapper",
14 "step_compile_markdown",
15 "step_expand_loop_tags",
16 "step_ensure_doctype",
17 "step_add_cached_component_elements"
18]