Class: Slaw::Grammars::Inlines::Italics

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



65
66
67
68
69
70
71
# File 'lib/slaw/grammars/inlines_nodes.rb', line 65

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