diff --git a/skema/skema-rs/mathml/src/parsers/generic_mathml.rs b/skema/skema-rs/mathml/src/parsers/generic_mathml.rs index 79e25562d03..a4185306497 100644 --- a/skema/skema-rs/mathml/src/parsers/generic_mathml.rs +++ b/skema/skema-rs/mathml/src/parsers/generic_mathml.rs @@ -194,7 +194,7 @@ pub fn subtract(input: Span) -> IResult { } pub fn multiply(input: Span) -> IResult { - let (s, op) = value(Operator::Multiply, alt((ws(tag("*")), ws(tag("∗")))))(input)?; + let (s, op) = value(Operator::Multiply, alt((ws(tag("*")), ws(tag("∗")), ws(tag("∗")))))(input)?; Ok((s, op)) }