Method: IsoDoc::HtmlFunction::Html#html_preface

Defined in:
lib/isodoc/html_function/postprocess_cover.rb

#html_preface(docxml) ⇒ Object



42
43
44
45
46
47
48
49
50
51
# File 'lib/isodoc/html_function/postprocess_cover.rb', line 42

def html_preface(docxml)
  @htmlcoverpage && !@htmlcoverpage.empty? && !@bare and
    html_cover(docxml)
  @htmlintropage && !@htmlintropage.empty? && !@bare and
    html_intro(docxml)
  docxml.at("//body") << mathjax(@openmathdelim, @closemathdelim)
  html_main(docxml)
  authority_cleanup(docxml)
  docxml
end