Class: IsoDoc::Acme::HtmlConvert
- Inherits:
-
HtmlConvert
- Object
- HtmlConvert
- IsoDoc::Acme::HtmlConvert
show all
- Includes:
- BaseConvert
- Defined in:
- lib/isodoc/acme/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
Class Method Summary
collapse
Instance Method Summary
collapse
#annex_name, #baselocation, #cleanup, #fileloc, #i18n_init, #make_body, #metadata_init, #term_cleanup
Constructor Details
#initialize(options) ⇒ HtmlConvert
Returns a new instance of HtmlConvert.
11
12
13
14
|
# File 'lib/isodoc/acme/html_convert.rb', line 11
def initialize(options)
@libdir = File.dirname(__FILE__)
super
end
|
Class Attribute Details
._file ⇒ Object
Returns the value of attribute _file.
17
18
19
|
# File 'lib/isodoc/acme/html_convert.rb', line 17
def _file
@_file
end
|
Class Method Details
.inherited(k) ⇒ Object
20
21
22
|
# File 'lib/isodoc/acme/html_convert.rb', line 20
def self.inherited( k )
k._file = caller_locations.first.absolute_path
end
|
Instance Method Details
#configuration ⇒ Object
48
49
50
|
# File 'lib/isodoc/acme/html_convert.rb', line 48
def configuration
Metanorma::Acme.configuration
end
|
#default_file_locations(_options) ⇒ Object
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# File 'lib/isodoc/acme/html_convert.rb', line 34
def default_file_locations(_options)
{
htmlstylesheet: baselocation(configuration.htmlstylesheet) ||
html_doc_path("htmlstyle.scss"),
htmlcoverpage: baselocation(configuration.htmlcoverpage) ||
html_doc_path("html_acme_titlepage.html"),
htmlintropage: baselocation(configuration.htmlintropage) ||
html_doc_path("html_acme_intro.html"),
scripts: baselocation(configuration.scripts) ||
html_doc_path("scripts.html"),
i18nyaml: baselocation(configuration.i18nyaml)
}
end
|
#default_fonts(options) ⇒ Object
24
25
26
27
28
29
30
31
32
|
# File 'lib/isodoc/acme/html_convert.rb', line 24
def default_fonts(options)
{
bodyfont: (options[:script] == "Hans" ? '"SimSun",serif'
: configuration.html_bodyfont || '"Overpass",sans-serif'),
headerfont: (options[:script] == "Hans" ? '"SimHei",sans-serif' :
configuration. || '"Overpass",sans-serif'),
monospacefont: configuration.html_monospacefont || '"Space Mono",monospace'
}
end
|
#googlefonts ⇒ Object
52
53
54
55
56
57
|
# File 'lib/isodoc/acme/html_convert.rb', line 52
def googlefonts
" <link href=\"https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i|Space+Mono:400,700\" rel=\"stylesheet\">\n <link href=\"https://fonts.googleapis.com/css?family=Overpass:300,300i,600,900\" rel=\"stylesheet\">\n HEAD\nend\n".freeze
|