Is it possible to continue a view state in the next line like ending an line with "\" in Ruby and CoffeeScript?
I need to write some views like:
button[event:click=@addCondition class="condition-button add-child" title="Add filter"] "Add filter"
But I'd prefer to write it as
button[ \
event:click=@addCondition \
class="condition-button add-child" \
title="Add filter" \
] "Add filter"
Or even omit the "\" if possible since the bracket wasn't closed yet.
Make sense?