Method: IsoDoc::Function::Section#introduction
- Defined in:
- lib/isodoc/function/section.rb
#introduction(clause, out) ⇒ Object
91 92 93 94 95 96 97 98 99 100 |
# File 'lib/isodoc/function/section.rb', line 91 def introduction(clause, out) page_break(out) out.div class: "Section3", id: clause["id"] do |div| clause_name(clause, clause.at(ns("./title")), div, { class: "IntroTitle" }) clause.elements.each do |e| parse(e, div) unless e.name == "title" end end end |