Class: IsoDoc::Acme::WordConvert

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

Overview

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

Instance Method Summary collapse

Methods included from BaseConvert

#annex_name, #cleanup, #convert1, #fileloc, #i18n_init, #info, #make_body, #metadata_init, #term_cleanup

Constructor Details

#initialize(options) ⇒ WordConvert

Returns a new instance of WordConvert.



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

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

Instance Method Details

#default_file_locations(options) ⇒ Object



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

def default_file_locations(options)
  {
    wordstylesheet: html_doc_path("wordstyle.scss"),
    standardstylesheet: html_doc_path("acme.scss"),
    header: html_doc_path("header.html"),
    wordcoverpage: html_doc_path("word_acme_titlepage.html"),
    wordintropage: html_doc_path("word_acme_intro.html"),
    ulstyle: "l3",
    olstyle: "l2",
  }
end

#default_fonts(options) ⇒ Object



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

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