I use pandoc for generate index.html with YAML metadata. I know iterate associative arrays from pandoc template:
YAML:
- Author: Mastropiero
- Author: Gunter Fraggen
TEMPLATE:
$for(author)$
$author$
$endfor$
But... How to iterate lists without key?
YAML:
- Author:
- [Value1, Value2]
- [Value1B, Value2B]
TEMPLATE:
$for(author)$
... // how works?
$endfor$