In my Jade template, I’m trying to make an array like so:
- var myArray = [
'one',
'two',
'three'
]
But it doesn’t compile. Anyone know why? Being able to have a multi-line array that I can use as a mixin argument would make my code much less verbose.
If you wanna.