I'm trying to make a table out of some JSON data in NodeJS/Jade. The table works fine, except that I can't figure out how to reference object keys which contain spaces.
tbody
each row in thing
tr
td
!{row.id} //Works fine
td
!{row.["some key"]} //causes the renderer to crash
Doing this causes jade to throw a SyntaxError for an unexpected token, so what is the proper way to reference this key?