Is there a way to drop the need for ol
and ul
in jade lists - I want to write...
ol first item
li second item
li third item
seems like too much indenting otherwise
Currently, I am thinking I could make a filter that wraps each line with <li>|</li>
and call the filter :ol
so I can do...
:ol
first line
second line
Is there a better way?