Initial work on the WBT parser and its test suite

This commit is contained in:
2026-06-25 22:45:08 +03:00
commit 94cc652049
10 changed files with 219 additions and 0 deletions
@@ -0,0 +1,6 @@
<html>
<body>
<h1>Hello World</h1>
<p>{{ INVALID { EXPRESSION }}</p>
</body>
</html>
+5
View File
@@ -0,0 +1,5 @@
<html>
<body>
<h1>Hello World</h1>
</body>
</html>
+6
View File
@@ -0,0 +1,6 @@
<html>
<body>
<h1>Hello World</h1>
<p>{{ VALID EXPRESSION }}</p>
</body>
</html>
+6
View File
@@ -0,0 +1,6 @@
<html>
<body>
<h1>Hello World</h1>
<p>{{ INVALID EXPRESSION }</p>
</body>
</html>