Class: IsoDoc::Generic::HtmlConvert
- Inherits:
-
HtmlConvert
- Object
- HtmlConvert
- IsoDoc::Generic::HtmlConvert
- Includes:
- BaseConvert, Init
- Defined in:
- lib/isodoc/generic/html_convert.rb
Overview
A Converter implementation that generates HTML output, and a document schema encapsulation of the document for validation
Class Attribute Summary collapse
-
._file ⇒ Object
Returns the value of attribute _file.
Class Method Summary collapse
Instance Method Summary collapse
- #default_file_locations(_options) ⇒ Object
- #default_fonts(options) ⇒ Object
- #googlefonts ⇒ Object
-
#initialize(options) ⇒ HtmlConvert
constructor
A new instance of HtmlConvert.
Methods included from Init
#i18n_init, #metadata_init, #xref_init
Methods included from Utils
#baselocation, #configuration, #fileloc
Methods included from BaseConvert
#cleanup, #info, #make_body, #term_cleanup
Constructor Details
#initialize(options) ⇒ HtmlConvert
Returns a new instance of HtmlConvert.
11 12 13 14 |
# File 'lib/isodoc/generic/html_convert.rb', line 11 def initialize() @libdir = File.dirname(__FILE__) super end |
Class Attribute Details
._file ⇒ Object
Returns the value of attribute _file.
17 18 19 |
# File 'lib/isodoc/generic/html_convert.rb', line 17 def _file @_file end |
Class Method Details
.inherited(k) ⇒ Object
20 21 22 |
# File 'lib/isodoc/generic/html_convert.rb', line 20 def self.inherited(k) k._file = caller_locations(1..1).first.absolute_path end |
Instance Method Details
#default_file_locations(_options) ⇒ Object
48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/isodoc/generic/html_convert.rb', line 48 def default_file_locations() { htmlstylesheet: baselocation(configuration.htmlstylesheet) || html_doc_path("htmlstyle.scss"), htmlcoverpage: baselocation(configuration.htmlcoverpage) || html_doc_path("html_generic_titlepage.html"), htmlintropage: baselocation(configuration.htmlintropage) || html_doc_path("html_generic_intro.html"), scripts: baselocation(configuration.scripts), i18nyaml: (if configuration.i18nyaml.is_a?(String) baselocation(configuration.i18nyaml) end), }.transform_values { |v| v&.empty? ? nil : v } end |
#default_fonts(options) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/isodoc/generic/html_convert.rb', line 24 def default_fonts() { bodyfont: ( if [:script] == "Hans" '"Source Han Sans",serif' else configuration.html_bodyfont || '"Overpass",sans-serif' end ), headerfont: ( if [:script] == "Hans" '"Source Han Sans",sans-serif' else configuration.html_headerfont || '"Overpass",sans-serif' end ), monospacefont: configuration.html_monospacefont || '"Space Mono",monospace', normalfontsize: configuration.html_normalfontsize, smallerfontsize: configuration.html_smallerfontsize, footnotefontsize: configuration.html_footnotefontsize, monospacefontsize: configuration.html_monospacefontsize, }.transform_values { |v| v&.empty? ? nil : v } end |
#googlefonts ⇒ Object
63 64 65 66 67 68 69 |
# File 'lib/isodoc/generic/html_convert.rb', line 63 def googlefonts return unless configuration.webfont Array(configuration.webfont).map do |x| %{<link href="#{x}" rel="stylesheet"/>} end.join("\n") end |