Class: Slaw::Grammars::Inlines::Superscript

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



80
81
82
83
84
85
86
# File 'lib/slaw/grammars/inlines_nodes.rb', line 80

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