Method: IsoDoc::Function::Section#introduction
- Defined in:
- lib/isodoc/function/section.rb
#introduction(isoxml, out) ⇒ Object
154 155 156 157 158 159 160 161 162 163 164 |
# File 'lib/isodoc/function/section.rb', line 154 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 |