New modules.
WrenCI / linux (push) Waiting to run
WrenCI / mac (push) Waiting to run
WrenCI / windows (push) Waiting to run

This commit is contained in:
2026-01-24 19:35:43 +01:00
parent 1a08b3adf0
commit 236d69c2d7
118 changed files with 315687 additions and 6 deletions
+11
View File
@@ -0,0 +1,11 @@
// retoor <retoor@molodetz.nl>
import "jinja" for Environment, DictLoader
var env = Environment.new(DictLoader.new({
"raw_var": "{\% raw \%}{{ not_parsed }}{\% endraw \%}",
"raw_block": "{\% raw \%}{\% if true \%}nope{\% endif \%}{\% endraw \%}"
}))
System.print(env.getTemplate("raw_var").render({})) // expect: {{ not_parsed }}
System.print(env.getTemplate("raw_block").render({})) // expect: {% if true %}nope{% endif %}