diff options
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | htmtl/expression_parser.py | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -12,7 +12,7 @@ you to use any editor without needing any additional editor extensions. - **Partials**: You can include other templates inside your templates. - **Loops**: You can loop over iterable data. - **Extendable**: You can implement custom attribute parsers and expression modifiers. -- + ## Example syntax ```html diff --git a/htmtl/expression_parser.py b/htmtl/expression_parser.py index d5b83e7..c27b8f4 100644 --- a/htmtl/expression_parser.py +++ b/htmtl/expression_parser.py @@ -1,5 +1,4 @@ from typing import Dict, Any - from .expression_modifier import ExpressionModifier |
