Sha256: 74a679a951df5173b0d11198af99ce7518f2641164f51760f7bcfc091fd8b711
Contents?: true
Size: 1.57 KB
Versions: 3
Compression:
Stored size: 1.57 KB
Contents
# frozen_string_literal: true require_relative "ternary_function" module Plurimath module Math module Function class Multiscript < TernaryFunction FUNCTION = { name: "multiscript", first_value: "base", second_value: "subscript", third_value: "supscript", }.freeze def to_omml_without_math_tag(display_style) 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, display_style, tag_name: "sub"), omml_parameter(parameter_three, display_style, tag_name: "sup"), omml_parameter(parameter_one, display_style, tag_name: "e"), ], ) [pre_element] end def line_breaking(obj) parameter_one&.line_breaking(obj) if obj.value_exist? obj.update( self.class.new(Utility.filter_values(obj.value), parameter_two, parameter_three) ) self.parameter_two = nil self.parameter_three = nil return end parameter_two.line_breaking(obj) if obj.value_exist? obj.update( self.class.new(nil, Utility.filter_values(obj.value), parameter_three) ) self.parameter_three = nil end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
plurimath-0.7.2 | lib/plurimath/math/function/multiscript.rb |
plurimath-0.7.1 | lib/plurimath/math/function/multiscript.rb |
plurimath-0.7.0 | lib/plurimath/math/function/multiscript.rb |