summaryrefslogtreecommitdiff
path: root/hello.py
diff options
context:
space:
mode:
authorAsko Nõmm <asko@nmm.ee>2024-12-30 20:24:23 +0200
committerAsko Nõmm <asko@nmm.ee>2024-12-30 20:24:23 +0200
commit1017edd34bff48fee7362e48838d94e8fd11bdad (patch)
tree9bf882c7d520676f429d48370ae9da383ddc24ab /hello.py
parent1ac6564a775835dd9bc93a2fb48ef87f9fc2daed (diff)
bump
Diffstat (limited to 'hello.py')
-rw-r--r--hello.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hello.py b/hello.py
index c8866ce..9ecd5b9 100644
--- a/hello.py
+++ b/hello.py
@@ -2,7 +2,7 @@ from htmtl import Htmtl
def main():
- print(Htmtl("<div inner-text=\"hello\">asdasd</div>").html())
+ print(Htmtl("<div inner-text=\"hello {something}\">asdasd</div>", {'something': 'nothing'}).html())
if __name__ == "__main__":