Method: IsoDoc::Function::Section#colophon

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

#colophon(node, out) ⇒ Object



167
168
169
170
171
172
173
174
175
176
177
# File 'lib/isodoc/function/section.rb', line 167

def colophon(node, out)
  @seen_colophon or page_break(out)
  @seen_colophon = true
  out.div class: "Section3", id: node["id"] do |div|
    clause_name(node, node.at(ns("./title")), div,
                { class: "IntroTitle" })
    node.elements.each do |e|
      parse(e, div) unless e.name == "title"
    end
  end
end