For example, to generate ``` hi chris! hi mark! hi scott! ``` I could write (with a yaml header and lustache)... ``` --- names: [ {name: chris}, {name: mark}, {name: scott} ] --- # Hello Everyone {{#names}} hi {{name}}! {{/names}} ```