Class: IsoDoc::Iec::HtmlConvert
- Inherits:
-
IsoDoc::Iso::HtmlConvert
- Object
- IsoDoc::Iso::HtmlConvert
- IsoDoc::Iec::HtmlConvert
show all
- Includes:
- BaseConvert, Init
- Defined in:
- lib/isodoc/iec/html_convert.rb
Instance Method Summary
collapse
Methods included from Init
#bibrenderer, #convert1, #i18n_init, #metadata_init, #std_docid_semantic, #xref_init
#biblio_list, #bibliography, #boilerplate, #clause_attrs, #foreword, #para_class, #set_termdomain, #terms_parse
Constructor Details
#initialize(options) ⇒ HtmlConvert
Returns a new instance of HtmlConvert.
9
10
11
12
|
# File 'lib/isodoc/iec/html_convert.rb', line 9
def initialize(options)
super
@libdir = File.dirname(__FILE__)
end
|
Instance Method Details
#authority_cleanup(docxml) ⇒ Object
40
41
42
43
44
45
|
# File 'lib/isodoc/iec/html_convert.rb', line 40
def authority_cleanup(docxml)
auth = docxml.at("//div[@id = 'boilerplate-feedback' or "\
"@class = 'boilerplate-feedback']")
auth&.remove
super
end
|
#default_file_locations(_options) ⇒ Object
24
25
26
27
28
29
30
31
|
# File 'lib/isodoc/iec/html_convert.rb', line 24
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
|
#default_fonts(options) ⇒ Object
14
15
16
17
18
19
20
21
22
|
# File 'lib/isodoc/iec/html_convert.rb', line 14
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
|
#htmlstyle(_docxml) ⇒ Object
33
34
35
36
37
38
|
# File 'lib/isodoc/iec/html_convert.rb', line 33
def htmlstyle(_docxml)
docxml = super
b = docxml.at("div[@class = 'boilerplate_legal']/ol")
b and b["type"] = "1"
docxml
end
|