lib/isodoc/csand/html_convert.rb in metanorma-csand-1.1.4 vs lib/isodoc/csand/html_convert.rb in metanorma-csand-1.1.5
- old
+ new
@@ -1,7 +1,7 @@
+require_relative "base_convert"
require "isodoc"
-require_relative "metadata"
module IsoDoc
module Csand
# A {Converter} implementation that generates CSAND output, and a document
# schema encapsulation of the document for validation
@@ -26,37 +26,10 @@
htmlintropage: html_doc_path("html_csand_intro.html"),
scripts: html_doc_path("scripts.html"),
}
end
- def metadata_init(lang, script, labels)
- @meta = Metadata.new(lang, script, labels)
- end
-
- def annex_name(annex, name, div)
- div.h1 **{ class: "Annex" } do |t|
- t << "#{get_anchors[annex['id']][:label]} "
- t.br
- t.b do |b|
- name&.children&.each { |c2| parse(c2, b) }
- end
- end
- end
-
- def term_defs_boilerplate(div, source, term, preface)
- if source.empty? && term.nil?
- div << @no_terms_boilerplate
- else
- div << term_defs_boilerplate_cont(source, term)
- end
- end
-
- def i18n_init(lang, script)
- super
- @annex_lbl = "Appendix"
- end
-
def googlefonts()
<<~HEAD.freeze
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i|Space+Mono:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Rubik:300,300i,500" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Overpass:100,300,300i,600,900" rel="stylesheet">
@@ -75,22 +48,10 @@
def html_toc(docxml)
docxml
end
- def cleanup(docxml)
- super
- term_cleanup(docxml)
- end
-
- def term_cleanup(docxml)
- docxml.xpath("//p[@class = 'Terms']").each do |d|
- h2 = d.at("./preceding-sibling::*[@class = 'TermNum'][1]")
- h2.add_child(" ")
- h2.add_child(d.remove)
- end
- docxml
- end
+ include BaseConvert
end
end
end