Module: IsoDoc::Function::Inline
- Included in:
- Common
- Defined in:
- lib/isodoc/function/inline.rb
Instance Method Summary collapse
- #anchor_linkend(node, linkend) ⇒ Object
- #callout_parse(node, out) ⇒ Object
- #eref_localities(refs) ⇒ Object
- #eref_parse(node, out) ⇒ Object
- #error_parse(node, out) ⇒ Object
- #get_linkend(node) ⇒ Object
- #link_parse(node, out) ⇒ Object
- #page_break(out) ⇒ Object
- #section_break(body) ⇒ Object
- #stem_parse(node, out) ⇒ Object
- #xref_parse(node, out) ⇒ Object
Instance Method Details
#anchor_linkend(node, linkend) ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/isodoc/function/inline.rb', line 21 def anchor_linkend(node, linkend) if node["citeas"].nil? && node["bibitemid"] && get_anchors.has_key?(node["bibitemid"]) return get_anchors[node["bibitemid"]][:xref] elsif node["target"] && get_anchors.has_key?(node["target"]) linkend = get_anchors[node["target"]][:xref] container = get_anchors[node["target"]][:container] (container && get_note_container_id(node) != container) && linkend = l10n(get_anchors[container][:xref] + ", " + linkend) end linkend end |
#callout_parse(node, out) ⇒ Object
17 18 19 |
# File 'lib/isodoc/function/inline.rb', line 17 def callout_parse(node, out) out << " <#{node.text}>" end |
#eref_localities(refs) ⇒ Object
48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/isodoc/function/inline.rb', line 48 def eref_localities(refs) ret = "" refs.each do |r| ret += if r["type"] == "whole" then l10n(", #{@whole_of_text}") else eref_localities1(r["type"], r.at(ns("./referenceFrom")), r.at(ns("./referenceTo")), @lang) end end ret end |
#eref_parse(node, out) ⇒ Object
60 61 62 63 64 65 66 67 68 69 |
# File 'lib/isodoc/function/inline.rb', line 60 def eref_parse(node, out) linkend = get_linkend(node) if node["type"] == "footnote" out.sup do |s| s.a(**{ "href": "#" + node["bibitemid"] }) { |l| l << linkend } end else out.a(**{ "href": "#" + node["bibitemid"] }) { |l| l << linkend } end end |
#error_parse(node, out) ⇒ Object
83 84 85 86 87 88 |
# File 'lib/isodoc/function/inline.rb', line 83 def error_parse(node, out) text = node.to_xml.gsub(/</, "<").gsub(/>/, ">") out.para do |p| p.b(**{ role: "strong" }) { |e| e << text } end end |
#get_linkend(node) ⇒ Object
33 34 35 36 37 38 39 40 41 |
# File 'lib/isodoc/function/inline.rb', line 33 def get_linkend(node) link = anchor_linkend(node, docid_l10n(node["target"] || node["citeas"])) link += eref_localities(node.xpath(ns("./locality"))) text = node.children.select { |c| c.text? && !c.text.empty? } link = text.join(" ") unless text.nil? || text.empty? # so not <origin bibitemid="ISO7301" citeas="ISO 7301"> # <locality type="section"><reference>3.1</reference></locality></origin> link end |
#link_parse(node, out) ⇒ Object
11 12 13 14 15 |
# File 'lib/isodoc/function/inline.rb', line 11 def link_parse(node, out) linktext = node.text linktext = node["target"] if linktext.empty? out.a(**{ "href": node["target"] }) { |l| l << linktext } end |
#page_break(out) ⇒ Object
7 8 9 |
# File 'lib/isodoc/function/inline.rb', line 7 def page_break(out) out.br end |
#section_break(body) ⇒ Object
3 4 5 |
# File 'lib/isodoc/function/inline.rb', line 3 def section_break(body) body.br end |
#stem_parse(node, out) ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/isodoc/function/inline.rb', line 71 def stem_parse(node, out) ooml = if node["type"] == "AsciiMath" "#{@openmathdelim}#{node.text}#{@closemathdelim}" elsif node["type"] == "MathML" then node.first_element_child.to_s else node.text end out.span **{ class: "stem" } do |span| span.parent.add_child ooml end end |
#xref_parse(node, out) ⇒ Object
43 44 45 46 |
# File 'lib/isodoc/function/inline.rb', line 43 def xref_parse(node, out) linkend = get_linkend(node) out.a(**{ "href": "#" + node["target"] }) { |l| l << linkend } end |