soliciting feedback: which of these two syntaxes do you prefer?
body {
@each section in $(sections) where $(:title section) {
$(:title section)
}
$content
}
body {
@each section in (sections) where (:title section) {
$(:title section)
}
$content
}
(note that $ has disappeared from the @each line in the second one)
