class Root

A base piece of an Emerald file

Public Instance Methods

to_html(context) click to toggle source
# File lib/emerald/nodes/root.rb, line 9
def to_html(context)
  elements
    .map { |e| e.to_html(context) }
    .join("\n")
end