In HAML on Ruby on Rails, how to use the :sass filter?
- by Jian Lin
If using HAML on Ruby on Rails, then
:sass
#someDiv
border: 3px dashed orange
won't have any <style> tag around them.
and then
:css
:sass
#someDiv
border: 3px dashed orange
won't kick on the :sass filter, but
:css
:sass
#someDiv
border: 3px dashed orange
will kick on the :sass filter, but it is outside of the <style> tag. So how can the :sass filter be used?