Sha256: 70ae2cc179b940ff9800dbf38705b36ae4b7f5cb90f813e00bb30ef7636db655
Contents?: true
Size: 1.38 KB
Versions: 74
Compression:
Stored size: 1.38 KB
Contents
require "isodoc" require "metanorma-iso" require_relative "base_convert" require_relative "init" module IsoDoc module Iec class HtmlConvert < IsoDoc::Iso::HtmlConvert def initialize(options) super @libdir = File.dirname(__FILE__) end def default_fonts(options) { bodyfont: (options[:script] == "Hans" ? '"Source Han Sans",serif' : '"Arial",sans-serif'), headerfont: (options[:script] == "Hans" ? '"Source Han Sans",sans-serif' : '"Arial",sans-serif'), monospacefont: '"Courier New",monospace', monospacefontsize: "1.0em", footnotefontsize: "0.9em", } end def default_file_locations(_options) @libdir = File.dirname(__FILE__) { htmlstylesheet: html_doc_path("htmlstyle.scss"), htmlcoverpage: html_doc_path("html_iec_titlepage.html"), htmlintropage: html_doc_path("html_iec_intro.html"), } end def htmlstyle(_docxml) docxml = super b = docxml.at("div[@class = 'boilerplate_legal']/ol") b and b["type"] = "1" docxml end def authority_cleanup(docxml) auth = docxml.at("//div[@id = 'boilerplate-feedback' or "\ "@class = 'boilerplate-feedback']") auth&.remove super end include BaseConvert include Init end end end
Version data entries
74 entries across 74 versions & 1 rubygems