When writing tags, I have to use the following syntax:
tag(attr="value", attr2="value")
It can become quite difficult to read when exceeds my line length.
Jade allowes this (no comma):
tag(attr="value" attr2="value")
and this (with optional comma):
tag(attr="value"
attr2="value")
Is it possible to add this?