Method: IsoDoc::Function::ToWordHtml#sup_parse

Defined in:
lib/isodoc/function/to_word_html.rb

#sup_parse(node, out) ⇒ Object



159
160
161
162
163
# File 'lib/isodoc/function/to_word_html.rb', line 159

def sup_parse(node, out)
  out.sup do |e|
    node.children.each { |n| parse(n, e) }
  end
end