Sha256: 16d31e7099ab1c8bf28ccb53802b404a25945947d15117efdf9e7dd7b922533e

Contents?: true

Size: 1.82 KB

Versions: 12

Compression:

Stored size: 1.82 KB

Contents

module IsoDoc::Function
  module Terms

    def definition_parse(node, out)
      node.children.each { |n| parse(n, out) }
    end

    def modification_parse(node, out)
      out << "[MODIFICATION]"
      para = node.at(ns("./p"))
      para.children.each { |n| parse(n, out) }
    end

    def deprecated_term_parse(node, out)
      out.p **{ class: "DeprecatedTerms", style:"text-align:left;" } do |p|
        p << l10n("#{@deprecated_lbl}: ")
        node.children.each { |c| parse(c, p) }
      end
    end

    def admitted_term_parse(node, out)
      out.p **{ class: "AltTerms", style:"text-align:left;" } do |p|
        node.children.each { |c| parse(c, p) }
      end
    end

    def term_parse(node, out)
      out.p **{ class: "Terms", style:"text-align:left;" } do |p|
        node.children.each { |c| parse(c, p) }
      end
    end

    def para_then_remainder(first, node, p, div)
      if first.name == "p"
        first.children.each { |n| parse(n, p) }
        node.elements.drop(1).each { |n| parse(n, div) }
      else
        node.elements.each { |n| parse(n, div) }
      end
    end

    def termnote_parse(node, out)
      out.div **note_attrs(node) do |div|
        first = node.first_element_child
        div.p do |p|
          p << "#{@xrefs.anchor(node['id'], :label) || '???'}: "
          para_then_remainder(first, node, p, div)
        end
      end
    end

    def termref_parse(node, out)
      out.p do |p|
        p << "[TERMREF]"
        node.children.each { |n| parse(n, p) }
        p << "[/TERMREF]"
      end
    end

    def termdef_parse(node, out)
      out.p **{ class: "TermNum", id: node["id"] } do |p|
        p << "#{@xrefs.get[node["id"]][:label]}#{clausedelim}"
      end
      set_termdomain("")
      node.children.each { |n| parse(n, out) }
    end

    def termdocsource_parse(_node, _out)
    end
  end
end

Version data entries

12 entries across 10 versions & 2 rubygems

Version Path
metanorma-cli-1.3.4 gems/ruby/2.6.0/gems/isodoc-1.1.3/lib/isodoc/function/terms.rb
metanorma-cli-1.3.4 gems/ruby/2.6.0/gems/isodoc-1.1.2/lib/isodoc/function/terms.rb
isodoc-1.1.4 lib/isodoc/function/terms.rb
metanorma-cli-1.3.3.1 gems/ruby/2.6.0/gems/isodoc-1.1.3/lib/isodoc/function/terms.rb
metanorma-cli-1.3.3.1 gems/ruby/2.6.0/gems/isodoc-1.1.2/lib/isodoc/function/terms.rb
isodoc-1.1.3 lib/isodoc/function/terms.rb
isodoc-1.1.3.pre.alpha3 lib/isodoc/function/terms.rb
isodoc-1.1.3.pre.alpha2 lib/isodoc/function/terms.rb
isodoc-1.1.3.pre.alpha lib/isodoc/function/terms.rb
isodoc-1.1.2 lib/isodoc/function/terms.rb
isodoc-1.1.1 lib/isodoc/function/terms.rb
isodoc-1.1.0 lib/isodoc/function/terms.rb