Class: Hpricot::Doc
- Inherits:
-
Object
- Object
- Hpricot::Doc
- Defined in:
- lib/html2slim/hpricot_monkeypatches.rb
Instance Method Summary collapse
Instance Method Details
#to_slim ⇒ Object
119 120 121 122 123 124 125 |
# File 'lib/html2slim/hpricot_monkeypatches.rb', line 119 def to_slim if respond_to?(:children) and children children.map { |x| x.to_slim }.select{|e| !e.nil? }.join("\n") else '' end end |