Sha256: dde9eaaa491f54ad28b2bf6b98c4d17293fb4a3aef114d2dddbcae5d06ce7a06
Contents?: true
Size: 734 Bytes
Versions: 58
Compression:
Stored size: 734 Bytes
Contents
require "isodoc" require_relative "base_convert" require "isodoc/generic/word_convert" require_relative "init" module IsoDoc module M3AAWG class WordConvert < IsoDoc::Generic::WordConvert def configuration Metanorma::M3AAWG.configuration end def colophon(body, docxml) section_break(body) body.div **{ class: "colophon" } do |div| end end def make_body(xml, docxml) body_attr = { lang: "EN-US", link: "blue", vlink: "#954F72" } xml.body **body_attr do |body| make_body2(body, docxml) make_body3(body, docxml) colophon(body, docxml) end end include BaseRender include Init end end end
Version data entries
58 entries across 58 versions & 1 rubygems