Class: IsoDoc::IHO::WordConvert
- Inherits:
-
Generic::WordConvert
- Object
- Generic::WordConvert
- IsoDoc::IHO::WordConvert
show all
- Includes:
- BaseConvert, Init
- Defined in:
- lib/isodoc/iho/word_convert.rb
Overview
A Converter implementation that generates Word output, and a document schema encapsulation of the document for validation
Instance Method Summary
collapse
Methods included from Init
#bibrenderer, #i18n_init, #info, #metadata_init, #omit_docid_prefix, #xref_init
#error_parse
Instance Method Details
#authority_cleanup(docxml) ⇒ Object
23
24
25
26
27
28
|
# File 'lib/isodoc/iho/word_convert.rb', line 23
def authority_cleanup(docxml)
super
docxml.xpath("//div[@class = 'boilerplate-feedback']/p").each do |p|
p["style"] = "font-size:8pt;font-family:Arial;text-align:right"
end
end
|
#configuration ⇒ Object
10
11
12
|
# File 'lib/isodoc/iho/word_convert.rb', line 10
def configuration
Metanorma::IHO.configuration
end
|
#make_body1(body, _docxml) ⇒ Object
14
15
16
17
18
19
20
21
|
# File 'lib/isodoc/iho/word_convert.rb', line 14
def make_body1(body, _docxml)
body.div class: "WordSection1" do |div1|
div1.p style: "font-size:0pt;" do |p|
p << " "
end
end
section_break(body)
end
|