example: ``` props => pug` for row, y in props.grid for cell, x in row span(key=y*row.length + x) #{cell} ` ``` workaround - use a flat array or insert a grouping element ``` props => pug` for row, y in props.grid div(key=y) for cell, x in row span(key=x) #{cell} ` ```