class IsoDoc::Csand::WordConvert
A {Converter} implementation that generates CSAND output, and a document schema encapsulation of the document for validation
Public Class Methods
new(options)
click to toggle source
Calls superclass method
# File lib/isodoc/csand/word_convert.rb, line 9 def initialize(options) @libdir = File.dirname(__FILE__) super end
Public Instance Methods
default_file_locations(options)
click to toggle source
# File lib/isodoc/csand/word_convert.rb, line 22 def default_file_locations(options) { wordstylesheet: html_doc_path("wordstyle.scss"), standardstylesheet: html_doc_path("csand.scss"), header: html_doc_path("header.html"), wordcoverpage: html_doc_path("word_csand_titlepage.html"), wordintropage: html_doc_path("word_csand_intro.html"), ulstyle: "l3", olstyle: "l2", } end
default_fonts(options)
click to toggle source
# File lib/isodoc/csand/word_convert.rb, line 14 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