This commit is contained in:
Gregor Lohaus
2026-04-08 01:05:23 +02:00
commit 0e552ec4f5
21 changed files with 1121 additions and 0 deletions

View File

@@ -0,0 +1 @@
<@var(context.text)>

View File

@@ -0,0 +1,7 @@
<@if(context.test)>
test
<@elseif(context.test2)>
test2
<@else>
test3
<@endif>

View File

@@ -0,0 +1,7 @@
<document>
<@if(context.header.render)>
<head> <@var(context.header.text)> </head>
<@endif>
<body>
</body>
</document>

2
testdata/no_end_if/test.txt vendored Normal file
View File

@@ -0,0 +1,2 @@
<@if(context.test)>
test

View File

@@ -0,0 +1,7 @@
<document>
<@if(context.header.render)>
<head> <@var(context.header.text)> </head>
<@endif>
<body>
</body>
</document>