It seems paths with a leading dot restrict the scope the below the current context.

This commit is contained in:
Tom Alexander 2020-05-23 23:06:04 -04:00
parent da4ef1a8c8
commit 6e8c7621f1
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,7 @@
{
"commander": "Chris",
"names": {
"captain": "Alice",
"first_officer": "Bob"
}
}

View File

@ -0,0 +1,5 @@
{#names}
Hello {.captain}!{~n}
Hello {.commander}!{~n}
Hello {commander}!{~n}
{/names}