Sha256: da24859ca8f8ce8f789e11bfb4abdd67e667ca4084e93669ca506c42c76abec7
Contents?: true
Size: 484 Bytes
Versions: 8
Compression:
Stored size: 484 Bytes
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Tilde < UnaryFunction def to_mathml_without_math_tag mover = Utility.ox_element("mover") first_value = (Utility.ox_element("mo") << "~") second_value = parameter_one.to_mathml_without_math_tag if parameter_one Utility.update_nodes(mover, [second_value, first_value]) end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems