Method: IsoDoc::Function::ToWordHtml#strong_parse
- Defined in:
- lib/isodoc/function/to_word_html.rb
#strong_parse(node, out) ⇒ Object
153 154 155 156 157 |
# File 'lib/isodoc/function/to_word_html.rb', line 153 def strong_parse(node, out) out.b do |e| node.children.each { |n| parse(n, e) } end end |