Sha256: bcd89f657f8c997935e6b504a376a530d981b654847f3691905c9895536a1208

Contents?: true

Size: 1.94 KB

Versions: 26

Compression:

Stored size: 1.94 KB

Contents

require_relative "base_convert"
require "isodoc"

module IsoDoc
  module Mpfd
    # A {Converter} implementation that generates Word output, and a document
    # schema encapsulation of the document for validation
    class WordConvert < IsoDoc::WordConvert
      def initialize(options)
        @libdir = File.dirname(__FILE__)
        super
      end

      include BaseConvert

      def default_fonts(options)
        {
          bodyfont: (options[:script] == "Hans" ? '"SimSun",serif' : '"Arial",sans-serif'),
          headerfont: (options[:script] == "Hans" ? '"SimHei",sans-serif' : '"Arial",sans-serif'),
          monospacefont: '"Courier New",monospace'
        }
      end

      def default_file_locations(options)
        {
          htmlstylesheet: html_doc_path("htmlstyle.scss"),
          htmlcoverpage: html_doc_path("html_rsd_titlepage.html"),
          htmlintropage: html_doc_path("html_rsd_intro.html"),
          scripts: html_doc_path("scripts.html"),
          wordstylesheet: html_doc_path("wordstyle.scss"),
          standardstylesheet: html_doc_path("rsd.scss"),
          header: html_doc_path("header.html"),
          wordcoverpage: html_doc_path("word_rsd_titlepage.html"),
          wordintropage: html_doc_path("word_rsd_intro.html"),
          ulstyle: "l3",
          olstyle: "l2",
        }
      end

      def make_body(xml, docxml)
        body_attr = { lang: "EN-US", link: "blue", vlink: "#954F72" }
        xml.body **body_attr do |body|
          make_body1(body, docxml)
          make_body2(body, docxml)
          make_body3(body, docxml)
        end
      end

      def make_body2(body, docxml)
        body.div **{ class: "WordSection2" } do |div2|
          info docxml, div2
          abstract docxml, div2
          foreword docxml, div2
          introduction docxml, div2
          terms_defs docxml, div2, 0
          div2.p { |p| p << "&nbsp;" } # placeholder
        end
        section_break(body)
      end
    end
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
metanorma-mpfd-0.3.22 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.21 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.20 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.19 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.18 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.17 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.16 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.15 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.14 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.13 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.11 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.10 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.9 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.8 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.7 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.6 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.5 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.4 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.3 lib/isodoc/mpfd/word_convert.rb
metanorma-mpfd-0.3.2 lib/isodoc/mpfd/word_convert.rb