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 10620d7 commit e971402Copy full SHA for e971402
lib/model/katex.dart
@@ -272,6 +272,21 @@ class _KatexParser {
272
fontStyle = KatexSpanFontStyle.normal;
273
274
// TODO handle skipped class declarations between .mainrm and
275
+ // .mspace .
276
+
277
+ case 'mspace':
278
+ // .mspace { ... }
279
+ // Do nothing, it has properties that don't need special handling.
280
+ break;
281
282
+ // TODO handle skipped class declarations between .mspace and
283
+ // .msupsub .
284
285
+ case 'msupsub':
286
+ // .msupsub { text-align: left; }
287
+ textAlign = KatexSpanTextAlign.left;
288
289
+ // TODO handle skipped class declarations between .msupsub and
290
// .sizing .
291
292
case 'sizing':
0 commit comments