module Haml::Filters::Css

def render_with_options(text, options)

Other tags:
    See: Base#render_with_options -
def render_with_options(text, options)
  if options[:format] == :html5
    type = ''
  else
    type = " type=#{options[:attr_wrapper]}text/css#{options[:attr_wrapper]}"
  end
  <<END
#{type}>
[CDATA[*/
text.rstrip.gsub("\n", "\n    ")}
>*/
e>
end