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
# File 'lib/isodoc/html_function/postprocess_cover.rb', line 42

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