Instead of this:
<table>
[[
for id in logs:
log=logs[id]
=TR(TD(id),TD(log['foobar']))
pass
]]
</table>
I want to break the TR onto multiple lines for readability, like this:
=TR(
TD(id),
TD(log['foobar'])
)
This generates a syntax error. Putting a \ at the end of each line doesn't help.
Any suggestions for how to do this correctly? (I looked but I couldn't find it in the doc.)