Method: IsoDoc::Function::Section#introduction
- Defined in:
- lib/isodoc/function/section.rb
#introduction(isoxml, out) ⇒ Object
173 174 175 176 177 178 179 180 181 182 183 |
# File 'lib/isodoc/function/section.rb', line 173 def introduction(isoxml, out) f = isoxml.at(ns("//introduction")) || return title_attr = { class: "IntroTitle" } page_break(out) out.div **{ class: "Section3", id: f["id"] } do |div| clause_name(nil, @introduction_lbl, div, title_attr) f.elements.each do |e| parse(e, div) unless e.name == "title" end end end |