{ "data": [ { "input": "", "output": "", "description": "no input" }, { "input": "", "output": "", "description": "just text" }, { "input": "

{name}

", "output": "

Elf Sternberg

", "data": { "name": "Elf Sternberg" }, "description": "a simple substitution" }, { "input": "

{title} {name}

", "output": "

Mr. Elf Sternberg

", "data": { "name": "Elf Sternberg", "title": "Mr." }, "description": "two simple substitutions" }, { "input": "", "output": "", "data": { "title": "AAA" }, "description": "a conditional block" }, { "input": "", "output": "", "data": { "title": "" }, "description": "a conditional block with no input" }, { "input": "", "output": "", "data": { "stories": { "title": "" } }, "description": "a descendent block" }, { "input": "", "output": "", "data": { "stories": { "title": "AAA" } }, "description": "a descendent block 2" }, { "input": "", "output": "", "data": { "stories": [ { "title": "" } ] }, "description": "an iterative block" }, { "input": "", "output": "", "data": { "stories": [ { "title": "AAA" }, { "title": "CCC" } ] }, "description": "an iterative block 2" }, { "input": "", "output": "", "data": { "author": "DDD", "stories": [ { "title": "AAA" }, { "title": "CCC" } ] }, "description": "an iterative block with ascent" }, { "input": "{template:a}{name}{/template:a}F{a}", "output": "FG", "data": { "name": "G" }, "description": "A templatized block" } ] }