Method: IsoDoc::Function::Terms#deprecated_term_parse
- Defined in:
- lib/isodoc/function/terms.rb
#deprecated_term_parse(node, out) ⇒ Object
15 16 17 18 19 20 21 22 23 24 |
# File 'lib/isodoc/function/terms.rb', line 15 def deprecated_term_parse(node, out) node.children.each do |c| if c.name == "p" out.p class: "DeprecatedTerms", style: "text-align:left;" do |p| c.children.each { |c1| parse(c1, p) } end else parse(c, out) end end end |