Sha256: 835d5414b2427efb77594b6f946094f0b74cd60528e6c0692941dd6292d10867
Contents?: true
Size: 759 Bytes
Versions: 4
Compression:
Stored size: 759 Bytes
Contents
# frozen_string_literal: true require_relative "ternary_function" module Plurimath module Math module Function class Multiscript < TernaryFunction def to_omml_without_math_tag pre_element = Utility.ox_element("sPre", namespace: "m") pr_element = Utility.ox_element("sPrePr", namespace: "m") Utility.update_nodes( pre_element, [ pr_element << Utility.pr_element("ctrl", true, namespace: "m"), omml_parameter(parameter_two, tag_name: "sub"), omml_parameter(parameter_three, tag_name: "sup"), omml_parameter(parameter_one, tag_name: "e"), ], ) [pre_element] end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems