Sha256: dea28e8cd8942b458106f7dfa2f6cc67dd3855fd59e1e6211167ed8b24f5e9c7
Contents?: true
Size: 492 Bytes
Versions: 17
Compression:
Stored size: 492 Bytes
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Cancel < UnaryFunction def to_mathml_without_math_tag cancel_tag = Utility.ox_element( "menclose", attributes: { notation: "updiagonalstrike" }, ) first_value = parameter_one&.to_mathml_without_math_tag Utility.update_nodes(cancel_tag, [first_value]) end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems