Class: IsoDoc::IHO::WordConvert
- Inherits:
-
Generic::WordConvert
- Object
- Generic::WordConvert
- IsoDoc::IHO::WordConvert
show all
- Includes:
- BaseConvert
- 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
#annex_name_lbl, #annex_names, #annex_names1, #appendix_names, #back_anchor_names, #error_parse, #info, #metadata_init
Instance Method Details
#authority_cleanup(docxml) ⇒ Object
36
37
38
39
40
41
|
# File 'lib/isodoc/iho/word_convert.rb', line 36
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
|
#make_body2(body, docxml) ⇒ Object
23
24
25
26
27
28
29
30
31
32
33
34
|
# File 'lib/isodoc/iho/word_convert.rb', line 23
def make_body2(body, docxml)
body.div **{ class: "WordSection2" } do |div2|
boilerplate docxml, div2
abstract docxml, div2
foreword docxml, div2
introduction docxml, div2
preface docxml, div2
acknowledgements docxml, div2
div2.p { |p| p << " " }
end
section_break(body)
end
|