Is there some way to write inline nested tags in diet templates? Jade provides the following kind of syntax for this.

li: a(href="foobar")

This would just be a nice little bit of sugar. I thought of it when I was writing a lot of links in lists, which look like this.

ul
    li
        a
    li
        a

They could look like this.

ul
    li: a
    li: a