Class: Slaw::Grammars::Inlines::Underline

Inherits:
Treetop::Runtime::SyntaxNode
  • Object
show all
Defined in:
lib/slaw/grammars/inlines_nodes.rb

Instance Method Summary collapse

Instance Method Details

#to_xml(b, idprefix) ⇒ Object



100
101
102
103
104
105
106
# File 'lib/slaw/grammars/inlines_nodes.rb', line 100

def to_xml(b, idprefix)
  b.u { |b|
    for e in content.elements
      e.inline_item.to_xml(b, idprefix)
    end
  }
end