Sha256: 31c864f64745d840fd622fadb7383855f61f99183fe4f5525fb860d6f2a1b763
Contents?: true
Size: 837 Bytes
Versions: 5
Compression:
Stored size: 837 Bytes
Contents
require "isodoc" require "isodoc/generic/html_convert" require "isodoc/rsd/metadata" module IsoDoc module Rsd # 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::Rsd.configuration end def make_body3(body, docxml) body.div **{ class: "main-section" } do |div3| boilerplate 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 end end end
Version data entries
5 entries across 5 versions & 1 rubygems