Method: IsoDoc::Function::Section#foreword
- Defined in:
- lib/isodoc/function/section.rb
#foreword(clause, out) ⇒ Object
99 100 101 102 103 104 105 106 |
# File 'lib/isodoc/function/section.rb', line 99 def foreword(clause, out) page_break(out) out.div **attr_code(id: clause["id"]) do |s| clause_name(clause, clause.at(ns("./fmt-title")), s, { class: "ForewordTitle" }) clause.elements.each { |e| parse(e, s) unless e.name == "fmt-title" } end end |