I would like to output this jsp in haml:
<select>
<option ${page.defaultCar=="Volvo" ? "selected" : ""}>Volvo</option>
<option ${page.defaultCar=="Saab" ? "selected" : ""}>Saab</option>
</select>
The solution how found at the moment is to escape the entire line line so:
\<option ${page.defaultCar=="Volvo" ? "selected" : ""}>Volvo</option>
Just wondering if there is a smarter way to do it.
Thank you ;)