Module: Haml::Filters::Css
- Includes:
- Base
- Defined in:
- /var/build/temp/tmp.g5C1f6zb2g/4.0-0-0/ruby-haml/ruby-haml-3.1.6/lib/haml/filters.rb
Overview
Surrounds the filtered text with <style>
and CDATA tags. Useful for including inline CSS.
Instance Method Summary (collapse)
Methods included from Base
#compile, included, #internal_compile, #lazy_require, #render
Instance Method Details
- render_with_options(text, options)
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
# File '/var/build/temp/tmp.g5C1f6zb2g/4.0-0-0/ruby-haml/ruby-haml-3.1.6/lib/haml/filters.rb', line 223
def render_with_options(text, options)
if options[:format] == :html5
type = ''
else
type = " type=#{options[:attr_wrapper]}text/css#{options[:attr_wrapper]}"
end
<<END
<style#{type}>
/*<![CDATA[*/
#{text.rstrip.gsub("\n", "\n ")}
/*]]>*/
</style>
END
end
|