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 20b6c93 commit 92effd0Copy full SHA for 92effd0
lib/model/katex.dart
@@ -305,6 +305,21 @@ class _KatexParser {
305
fontStyle = KatexSpanFontStyle.normal;
306
307
// TODO handle skipped class declarations between .mainrm and
308
+ // .mspace .
309
+
310
+ case 'mspace':
311
+ // .mspace { ... }
312
+ // Do nothing, it has properties that don't need special handling.
313
+ break;
314
315
+ // TODO handle skipped class declarations between .mspace and
316
+ // .msupsub .
317
318
+ case 'msupsub':
319
+ // .msupsub { text-align: left; }
320
+ textAlign = KatexSpanTextAlign.left;
321
322
+ // TODO handle skipped class declarations between .msupsub and
323
// .sizing .
324
325
case 'sizing':
0 commit comments