Sha256: e0537d5581dd93a81bcf0def1b25de1742861ae092d24363e8bf2b27d77a92b3
Contents?: true
Size: 1.34 KB
Versions: 4
Compression:
Stored size: 1.34 KB
Contents
require_relative "base_convert" require "isodoc" require_relative "metadata" module IsoDoc module Iso class HtmlConvert < IsoDoc::HtmlConvert def initialize(options) @libdir = File.dirname(__FILE__) super end def default_fonts(options) { bodyfont: (options[:script] == "Hans" ? '"SimSun",serif' : options[:alt] ? '"Lato",sans-serif' : '"Cambria",serif'), headerfont: (options[:script] == "Hans" ? '"SimHei",sans-serif' : options[:alt] ? '"Lato",sans-serif' : '"Cambria",serif'), monospacefont: (options[:alt] ? '"Space Mono",monospace' : '"Courier New",monospace'), } end def default_file_locations(options) { htmlstylesheet: (options[:alt] ? html_doc_path("style-human.scss") : html_doc_path("style-iso.scss")), htmlcoverpage: html_doc_path("html_iso_titlepage.html"), htmlintropage: html_doc_path("html_iso_intro.html"), scripts: html_doc_path("scripts.html"), } end def insertall_after_here(node, insert, name) node.children.each do |n| next unless n.name == name insert.next = n.remove insert = n end insert end include BaseConvert end end end
Version data entries
4 entries across 4 versions & 1 rubygems