Module: Haml::Filters::Css
- Includes:
- Base
- Defined in:
- 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, #render
Instance Method Details
- render_with_options(text, options)
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
# File 'lib/haml/filters.rb', line 235
def render_with_options(text, options)
indent = options[:cdata] ? ' ' : ' ' # 4 or 2 spaces
if options[:format] == :html5
type = ''
else
type = " type=#{options[:attr_wrapper]}text/css#{options[:attr_wrapper]}"
end
str = "<style#{type}>\n"
str << " /*<![CDATA[*/\n" if options[:cdata]
str << "#{indent}#{text.rstrip.gsub("\n", "\n#{indent}")}\n"
str << " /*]]>*/\n" if options[:cdata]
str << "</style>"
str
end
|