Sha256: e68b1667f8a775b9df8689cafdad11d1bee150afe71ce72e632b62cb0c97e71f
Contents?: true
Size: 1.09 KB
Versions: 24
Compression:
Stored size: 1.09 KB
Contents
require_relative "base_convert" require "isodoc" module IsoDoc module Csd # A {Converter} implementation that generates CSD output, and a document # schema encapsulation of the document for validation class WordConvert < IsoDoc::WordConvert def initialize(options) @libdir = File.dirname(__FILE__) super end 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) { wordstylesheet: html_doc_path("wordstyle.scss"), standardstylesheet: html_doc_path("csd.scss"), header: html_doc_path("header.html"), wordcoverpage: html_doc_path("word_csd_titlepage.html"), wordintropage: html_doc_path("word_csd_intro.html"), ulstyle: "l3", olstyle: "l2", } end include BaseConvert end end end
Version data entries
24 entries across 24 versions & 1 rubygems