Coverage for phml\compiler\steps\__init__.py: 100%
8 statements
« prev ^ index » next coverage.py v6.5.0, created at 2023-04-12 14:26 -0500
« prev ^ index » next coverage.py v6.5.0, created at 2023-04-12 14:26 -0500
1from .components import step_add_cached_component_elements, step_substitute_components
2from .conditional import step_execute_conditions
3from .embedded import step_execute_embedded_python
4from .format import step_ensure_doctype
5from .loops import step_expand_loop_tags
6from .markup import step_compile_markdown
7from .wrapper import step_replace_phml_wrapper
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]