Skip to content

Commit

Permalink
Merge branch 'vraymond/m12_documentation' of https://github.com/ml4ai…
Browse files Browse the repository at this point in the history
…/skema into vraymond/m12_documentation
  • Loading branch information
vincentraymond-ua committed Mar 28, 2024
2 parents 2a8bedd + 5f4b080 commit ee6e463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skema/skema-rs/mathml/src/parsers/generic_mathml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ pub fn subtract(input: Span) -> IResult<Operator> {
}

pub fn multiply(input: Span) -> IResult<Operator> {
let (s, op) = value(Operator::Multiply, alt((ws(tag("*")), ws(tag("&#x2217;")))))(input)?;
let (s, op) = value(Operator::Multiply, alt((ws(tag("*")), ws(tag("&#x2217;")), ws(tag("∗")))))(input)?;
Ok((s, op))
}

Expand Down

0 comments on commit ee6e463

Please sign in to comment.