Sub6Resources / flutter_html

A Flutter widget for rendering static html as Flutter widgets (Will render over 80 different html tags!)
https://pub.dev/packages/flutter_html
MIT License
1.8k stars 875 forks source link

Support inferred mrow for msqrt. #1108

Closed RyosukeFukatani closed 2 years ago

RyosukeFukatani commented 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.

スクリーンショット 2022-07-15 22 06 17

Current flutter_html_math doesn't work as expected.