Class: Slaw::Grammars::Inlines::Bold

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



55
56
57
58
59
60
61
# File 'lib/slaw/grammars/inlines_nodes.rb', line 55

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