Add an initial test of partial parameters

This commit is contained in:
Tom Alexander 2020-05-07 19:12:45 -04:00
parent 467a810569
commit 0fcb70927c
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
3 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1 @@
Hello {name}{?item}, nice {item}{/item}!{~n}

View File

@ -0,0 +1,4 @@
{"people": [
{"name": "Alice", "item": "cat"},
{"name": "Bob"}
]}

View File

@ -0,0 +1,3 @@
{#people}
{>greeting item="shoes"/}
{/people}