We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e971402 commit 44305efCopy full SHA for 44305ef
lib/model/katex.dart
@@ -275,8 +275,13 @@ class _KatexParser {
275
// .mspace .
276
277
case 'mspace':
278
- // .mspace { ... }
279
- // Do nothing, it has properties that don't need special handling.
+ // .mspace { display: inline-block; }
+ // A .mspace span's children are always either empty,
280
+ // a no-break space " " (== "\xa0"),
281
+ // or one span.mtight containing a no-break space.
282
+ // TODO enforce that constraint on .mspace spans in parsing
283
+ // So `display: inline-block` has no effect compared to
284
+ // the initial `display: inline`.
285
break;
286
287
// TODO handle skipped class declarations between .mspace and
0 commit comments