Class: Root
- Defined in:
- lib/emerald/nodes/root.rb
Overview
A base piece of an Emerald file
Instance Method Summary collapse
Instance Method Details
#to_html(context) ⇒ Object
9 10 11 12 13 |
# File 'lib/emerald/nodes/root.rb', line 9 def to_html(context) elements .map { |e| e.to_html(context) } .join("\n") end |