Class: Slaw::Grammars::Inlines::Subscript

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



85
86
87
88
89
90
91
# File 'lib/slaw/grammars/inlines_nodes.rb', line 85

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