Sha256: def2f47dccb86c93fa7f2dd6ca3eb23a5bd93b058f86ff7b224e8d87cfb3fcbb
Contents?: true
Size: 1.66 KB
Versions: 4
Compression:
Stored size: 1.66 KB
Contents
require_relative "presentation_function/block" require_relative "presentation_function/inline" require_relative "presentation_function/math" require_relative "presentation_function/section" require_relative "presentation_function/bibdata" module IsoDoc class PresentationXMLConvert < ::IsoDoc::Convert def initialize(options) @format = :presentation @suffix = "presentation.xml" super end def convert1(docxml, filename, dir) @xrefs.parse docxml info docxml, nil conversions(docxml) docxml.root["type"] = "presentation" docxml.to_xml end def conversions(docxml) bibdata docxml @xrefs.parse docxml section docxml block docxml inline docxml end def section(docxml) clause docxml annex docxml term docxml references docxml index docxml clausetitle docxml toc docxml display_order docxml end def block(docxml) amend docxml table docxml figure docxml sourcecode docxml formula docxml example docxml termexample docxml note docxml termnote docxml termdefinition docxml permission docxml requirement docxml recommendation docxml end def inline(docxml) concept docxml xref docxml eref docxml origin docxml quotesource docxml mathml docxml variant docxml end def postprocess(result, filename, _dir) toXML(result, filename) @files_to_delete.each { |f| FileUtils.rm_rf f } end def toXML(result, filename) File.open(filename, "w:UTF-8") { |f| f.write(result) } end end end
Version data entries
4 entries across 4 versions & 1 rubygems