Closed RyosukeFukatani closed 2 years ago
Inferred mrows specification is documented here. https://www.w3.org/TR/REC-MathML/chap3_1.html#sec3.1.3
For example, Both <math><msqrt><mn>10</mn><mi>n</mi></msqrt></math> and <math><msqrt><mrow><mn>10</mn><mi>n</mi></mrow></msqrt></math> should be the same rendering result.
<math><msqrt><mn>10</mn><mi>n</mi></msqrt></math>
<math><msqrt><mrow><mn>10</mn><mi>n</mi></mrow></msqrt></math>
Current flutter_html_math doesn't work as expected.
Inferred mrows specification is documented here. https://www.w3.org/TR/REC-MathML/chap3_1.html#sec3.1.3
For example, Both
<math><msqrt><mn>10</mn><mi>n</mi></msqrt></math>
and<math><msqrt><mrow><mn>10</mn><mi>n</mi></mrow></msqrt></math>
should be the same rendering result.Current flutter_html_math doesn't work as expected.