Sha256: 4eaefe6d8c0fa2a29a3fca989887e5766a0ff96bd1f1f8324eee9b4d95b0d6ed
Contents?: true
Size: 924 Bytes
Versions: 19
Compression:
Stored size: 924 Bytes
Contents
require "isodoc" require "isodoc/generic/html_convert" require "isodoc/ribose/metadata" require_relative "init" module IsoDoc module Ribose # A {Converter} implementation that generates HTML output, and a document # schema encapsulation of the document for validation # class HtmlConvert < IsoDoc::Generic::HtmlConvert def configuration Metanorma::Ribose.configuration end 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 executivesummary docxml, div3 introduction docxml, div3 preface docxml, div3 acknowledgements docxml, div3 middle docxml, div3 footnotes div3 comments div3 end end include BaseConvert include Init end end end
Version data entries
19 entries across 19 versions & 1 rubygems