summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsko Nõmm <asko@nmm.ee>2024-12-31 00:58:27 +0200
committerAsko Nõmm <asko@nmm.ee>2024-12-31 00:58:27 +0200
commit0dcbc92eeed565be873a733425c03049deb86388 (patch)
tree04ec48ddef7fa23ada8b480b464d480bf24f5c4a
parentec34e42b87ed39ccb5d4f5b278be0ac73a77a55e (diff)
bump
-rw-r--r--README.md2
-rw-r--r--htmtl/expression_parser.py1
2 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index f6c31b7..99097e7 100644
--- a/README.md
+++ b/README.md
@@ -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