class IsoDoc::IHO::HtmlConvert

A {Converter} implementation that generates HTML output, and a document schema encapsulation of the document for validation

Public Instance Methods

configuration() click to toggle source
# File lib/isodoc/iho/html_convert.rb, line 11
def configuration
  Metanorma::IHO.configuration
end
make_body3(body, docxml) click to toggle source
# File lib/isodoc/iho/html_convert.rb, line 15
def make_body3(body, docxml)
  body.div **{ class: "main-section" } do |div3|
    boilerplate docxml, div3
    preface_block docxml, div3
    abstract docxml, div3
    foreword docxml, div3
    introduction docxml, div3
    preface docxml, div3
    acknowledgements docxml, div3
    middle docxml, div3
    footnotes div3
    comments div3
  end
end