Method: IsoDoc::Function::Section#annex
- Defined in:
- lib/isodoc/function/section.rb
#annex(node, out) ⇒ Object
33 34 35 36 37 38 39 40 41 42 |
# File 'lib/isodoc/function/section.rb', line 33 def annex(node, out) page_break(out) out.div **attr_code(annex_attrs(node)) do |s| node.elements.each do |c1| if c1.name == "fmt-title" then annex_name(node, c1, s) else parse(c1, s) end end end end |