How do we write a long attribute value over multiple lines in Jade / Pug?
SVG paths tend to be really long. We want to write an attribute value over multiple lines t
I have been looking for an answer to this and I believe you can break jade attributes onto multiple lines by skipping the trailing commas.
Ex.
aside
a.my-link(
href="https://foo.com"
data-widget-id="1234567abc")
| Tweets by @foobar
I found this commit message about it: https://github.com/visionmedia/jade/issues/65