11 lines
349 B
Text
11 lines
349 B
Text
---
|
|
source: tests/file_tests.rs
|
|
expression: output
|
|
info:
|
|
input: "{{ if world?.active }}\nHello {{= world.name }}\n{{ end }}\n\n{{ if world?.foo?.bar?.active }}\n Weird!\n{{ else }}\n Deep access is working :)\n{{ end }}"
|
|
context:
|
|
world:
|
|
active: true
|
|
name: World!
|
|
---
|
|
"\nHello World!\n\n\n\n Deep access is working :)\n"
|