lib/plurimath/math/function/dim.rb in plurimath-0.8.14 vs lib/plurimath/math/function/dim.rb in plurimath-0.8.15
- old
+ new
@@ -8,13 +8,13 @@
class Dim < UnaryFunction
def validate_function_formula
false
end
- def to_omml_without_math_tag(display_style)
+ def to_omml_without_math_tag(display_style, options:)
array = []
array << r_element("dim", rpr_tag: false) unless hide_function_name
- array += Array(omml_value(display_style))
+ array += Array(omml_value(display_style, options: options))
array
end
end
end
end