Method: IsoDoc::PresentationXMLConvert#toc_title_insert_pt
- Defined in:
- lib/isodoc/presentation_function/section.rb
#toc_title_insert_pt(docxml) ⇒ Object
229 230 231 232 233 234 235 236 |
# File 'lib/isodoc/presentation_function/section.rb', line 229 def toc_title_insert_pt(docxml) ins = docxml.at(ns("//preface")) || docxml.at(ns("//sections | //annex | //bibliography")) &.before("<preface> </preface>") &.previous_element or return nil ins.children.empty? and ins << " " ins.children.first end |