Sha256: 7ef7546aa8f4c12b7f5b7c58bba0affb5a98bcd8bb3ab669944277885655a2f6
Contents?: true
Size: 871 Bytes
Versions: 2
Compression:
Stored size: 871 Bytes
Contents
require "isodoc" require "isodoc/generic/html_convert" require_relative "base_convert" require_relative "init" module IsoDoc module M3AAWG class HtmlConvert < IsoDoc::Generic::HtmlConvert def configuration Metanorma::M3AAWG.configuration end def colophon(_docxml, body) body.div class: "colophon" do |div| div << <<~"COLOPHON" <p>As with all M<sup>3</sup>AAWG documents that we publish, please check the M<sup>3</sup>AAWG website (<a href="http://www.m3aawg.org">www.m3aawg.org</a>) for updates to this paper.</p> <p>© #{@meta.get[:docyear]} copyright by the Messaging, Malware and Mobile Anti-Abuse Working Group (M<sup>3</sup>AAWG)</p> COLOPHON end end include BaseRender include Init end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
metanorma-m3aawg-2.2.5 | lib/isodoc/m3aawg/html_convert.rb |
metanorma-m3aawg-2.2.4 | lib/isodoc/m3aawg/html_convert.rb |