Class: IsoDoc::M3d::WordConvert

Inherits:
WordConvert
  • Object
show all
Includes:
BaseRender
Defined in:
lib/isodoc/m3d/word_convert.rb

Overview

A Converter implementation that generates GB output, and a document schema encapsulation of the document for validation

Instance Method Summary collapse

Methods included from BaseRender

#annex_name, #cleanup, #fileloc, #i18n_init, #metadata_init, #term_cleanup

Constructor Details

#initialize(options) ⇒ WordConvert

Returns a new instance of WordConvert.



10
11
12
13
# File 'lib/isodoc/m3d/word_convert.rb', line 10

def initialize(options)
  @libdir = File.dirname(__FILE__)
  super
end

Instance Method Details

#colophon(body, docxml) ⇒ Object



38
39
40
41
42
# File 'lib/isodoc/m3d/word_convert.rb', line 38

def colophon(body, docxml)
  section_break(body)
  body.div **{ class: "colophon" } do |div|
  end
end

#default_file_locations(_options) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/isodoc/m3d/word_convert.rb', line 23

def default_file_locations(_options)
  {
    htmlstylesheet: html_doc_path("htmlstyle.scss"),
    htmlcoverpage: html_doc_path("html_m3d_titlepage.html"),
    htmlintropage: html_doc_path("html_m3d_intro.html"),
    scripts: html_doc_path("scripts.html"),
    wordstylesheet: html_doc_path("wordstyle.scss"),
    standardstylesheet: html_doc_path("m3d.scss"),
    header: html_doc_path("header.html"),
    wordintropage: html_doc_path("word_m3d_intro.html"),
    ulstyle: "l3",
    olstyle: "l2",
  }
end

#default_fonts(options) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/isodoc/m3d/word_convert.rb', line 15

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

#make_body(xml, docxml) ⇒ Object



44
45
46
47
48
49
50
51
# File 'lib/isodoc/m3d/word_convert.rb', line 44

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

#title(isoxml, _out) ⇒ Object



53
54
55
56
# File 'lib/isodoc/m3d/word_convert.rb', line 53

def title(isoxml, _out)
  main = isoxml&.at(ns("//title[@language='en']"))&.text
  (:doctitle, main)
end