diff --git a/lib/model/content.dart b/lib/model/content.dart
index 59f7b41aad..7aace0fbc7 100644
--- a/lib/model/content.dart
+++ b/lib/model/content.dart
@@ -369,8 +369,12 @@ abstract class MathNode extends ContentNode {
}
}
-class KatexNode extends ContentNode {
- const KatexNode({
+sealed class KatexNode extends ContentNode {
+ const KatexNode({super.debugHtmlNode});
+}
+
+class KatexSpanNode extends KatexNode {
+ const KatexSpanNode({
required this.styles,
required this.text,
required this.nodes,
@@ -402,6 +406,77 @@ class KatexNode extends ContentNode {
}
}
+class KatexStrutNode extends KatexNode {
+ const KatexStrutNode({
+ required this.heightEm,
+ required this.verticalAlignEm,
+ super.debugHtmlNode,
+ });
+
+ final double heightEm;
+ final double? verticalAlignEm;
+
+ @override
+ void debugFillProperties(DiagnosticPropertiesBuilder properties) {
+ super.debugFillProperties(properties);
+ properties.add(DoubleProperty('heightEm', heightEm));
+ properties.add(DoubleProperty('verticalAlignEm', verticalAlignEm));
+ }
+}
+
+class KatexVlistNode extends KatexNode {
+ const KatexVlistNode({
+ required this.rows,
+ super.debugHtmlNode,
+ });
+
+ final List rows;
+
+ @override
+ List debugDescribeChildren() {
+ return rows.map((row) => row.toDiagnosticsNode()).toList();
+ }
+}
+
+class KatexVlistRowNode extends ContentNode {
+ const KatexVlistRowNode({
+ required this.verticalOffsetEm,
+ required this.node,
+ super.debugHtmlNode,
+ });
+
+ final double verticalOffsetEm;
+ final KatexSpanNode node;
+
+ @override
+ void debugFillProperties(DiagnosticPropertiesBuilder properties) {
+ super.debugFillProperties(properties);
+ properties.add(DoubleProperty('verticalOffsetEm', verticalOffsetEm));
+ }
+}
+
+class KatexNegativeMarginNode extends KatexNode {
+ const KatexNegativeMarginNode({
+ required this.leftOffsetEm,
+ required this.nodes,
+ super.debugHtmlNode,
+ }) : assert(leftOffsetEm < 0);
+
+ final double leftOffsetEm;
+ final List nodes;
+
+ @override
+ void debugFillProperties(DiagnosticPropertiesBuilder properties) {
+ super.debugFillProperties(properties);
+ properties.add(DoubleProperty('leftOffsetEm', leftOffsetEm));
+ }
+
+ @override
+ List debugDescribeChildren() {
+ return nodes.map((node) => node.toDiagnosticsNode()).toList();
+ }
+}
+
class MathBlockNode extends MathNode implements BlockContentNode {
const MathBlockNode({
super.debugHtmlNode,
diff --git a/lib/model/katex.dart b/lib/model/katex.dart
index 709f91b4b2..fce99c60e3 100644
--- a/lib/model/katex.dart
+++ b/lib/model/katex.dart
@@ -1,3 +1,6 @@
+import 'package:collection/collection.dart';
+import 'package:csslib/parser.dart' as css_parser;
+import 'package:csslib/visitor.dart' as css_visitor;
import 'package:flutter/foundation.dart';
import 'package:html/dom.dart' as dom;
@@ -109,25 +112,46 @@ class _KatexParser {
bool get hasError => _hasError;
bool _hasError = false;
- void _logError(String message) {
- assert(debugLog(message));
- _hasError = true;
- }
-
List parseKatexHtml(dom.Element element) {
assert(element.localName == 'span');
assert(element.className == 'katex-html');
- return _parseChildSpans(element);
+ return _parseChildSpans(element.nodes);
}
- List _parseChildSpans(dom.Element element) {
- return List.unmodifiable(element.nodes.map((node) {
- if (node case dom.Element(localName: 'span')) {
- return _parseSpan(node);
- } else {
+ List _parseChildSpans(List nodes) {
+ var resultSpans = QueueList();
+ for (final node in nodes.reversed) {
+ if (node is! dom.Element || node.localName != 'span') {
throw KatexHtmlParseError();
}
- }));
+
+ final span = _parseSpan(node);
+
+ if (span is KatexSpanNode) {
+ final marginRightEm = span.styles.marginRightEm;
+ if (marginRightEm != null && marginRightEm.isNegative) {
+ final previousSpans = resultSpans;
+ resultSpans = QueueList();
+ resultSpans.addFirst(KatexNegativeMarginNode(
+ leftOffsetEm: marginRightEm,
+ nodes: previousSpans));
+ }
+ }
+
+ resultSpans.addFirst(span);
+
+ if (span is KatexSpanNode) {
+ final marginLeftEm = span.styles.marginLeftEm;
+ if (marginLeftEm != null && marginLeftEm.isNegative) {
+ final previousSpans = resultSpans;
+ resultSpans = QueueList();
+ resultSpans.addFirst(KatexNegativeMarginNode(
+ leftOffsetEm: marginLeftEm,
+ nodes: previousSpans));
+ }
+ }
+ }
+ return resultSpans;
}
static final _resetSizeClassRegExp = RegExp(r'^reset-size(\d\d?)$');
@@ -136,6 +160,137 @@ class _KatexParser {
KatexNode _parseSpan(dom.Element element) {
// TODO maybe check if the sequence of ancestors matter for spans.
+ if (element.className.startsWith('strut')) {
+ if (element.className == 'strut' && element.nodes.isEmpty) {
+ final styles = _parseSpanInlineStyles(element);
+ if (styles == null) throw KatexHtmlParseError();
+
+ final heightEm = styles.heightEm;
+ if (heightEm == null) throw KatexHtmlParseError();
+ final verticalAlignEm = styles.verticalAlignEm;
+
+ // Ensure only `height` and `vertical-align` inline styles are present.
+ if (styles.filter(heightEm: false, verticalAlignEm: false) !=
+ KatexSpanStyles()) {
+ throw KatexHtmlParseError();
+ }
+
+ return KatexStrutNode(
+ heightEm: heightEm,
+ verticalAlignEm: verticalAlignEm);
+ } else {
+ throw KatexHtmlParseError();
+ }
+ }
+
+ if (element.className.startsWith('vlist')) {
+ if (element case dom.Element(
+ localName: 'span',
+ className: 'vlist-t' || 'vlist-t vlist-t2',
+ nodes: [...],
+ ) && final vlistT) {
+ if (vlistT.attributes.containsKey('style')) throw KatexHtmlParseError();
+
+ final hasTwoVlistR = vlistT.className == 'vlist-t vlist-t2';
+ if (!hasTwoVlistR && vlistT.nodes.length != 1) throw KatexHtmlParseError();
+
+ if (hasTwoVlistR) {
+ if (vlistT.nodes case [
+ _,
+ dom.Element(localName: 'span', className: 'vlist-r', nodes: [
+ dom.Element(localName: 'span', className: 'vlist', nodes: [
+ dom.Element(localName: 'span', className: '', nodes: []),
+ ]),
+ ]),
+ ]) {
+ // Do nothing.
+ } else {
+ throw KatexHtmlParseError();
+ }
+ }
+
+ if (vlistT.nodes.first
+ case dom.Element(localName: 'span', className: 'vlist-r') &&
+ final vlistR) {
+ if (vlistR.attributes.containsKey('style')) throw KatexHtmlParseError();
+
+ if (vlistR.nodes.first
+ case dom.Element(localName: 'span', className: 'vlist') &&
+ final vlist) {
+ final rows = [];
+
+ for (final innerSpan in vlist.nodes) {
+ if (innerSpan case dom.Element(
+ localName: 'span',
+ className: '',
+ nodes: [
+ dom.Element(localName: 'span', className: 'pstrut') &&
+ final pstrutSpan,
+ ...final otherSpans,
+ ],
+ )) {
+ var styles = _parseSpanInlineStyles(innerSpan)!;
+ final topEm = styles.topEm ?? 0;
+
+ styles = styles.filter(topEm: false);
+
+ final pstrutStyles = _parseSpanInlineStyles(pstrutSpan)!;
+ final pstrutHeight = pstrutStyles.heightEm ?? 0;
+
+ KatexSpanNode innerSpanNode = KatexSpanNode(
+ styles: styles,
+ text: null,
+ nodes: _parseChildSpans(otherSpans));
+
+ final marginRightEm = styles.marginRightEm;
+ final marginLeftEm = styles.marginLeftEm;
+ if (marginRightEm != null && marginRightEm.isNegative) {
+ throw KatexHtmlParseError();
+ }
+ if (marginLeftEm != null && marginLeftEm.isNegative) {
+ innerSpanNode = KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexNegativeMarginNode(
+ leftOffsetEm: marginLeftEm,
+ nodes: [innerSpanNode]),
+ ]);
+ }
+
+ rows.add(KatexVlistRowNode(
+ verticalOffsetEm: topEm + pstrutHeight,
+ debugHtmlNode: kDebugMode ? innerSpan : null,
+ node: innerSpanNode));
+ } else {
+ throw KatexHtmlParseError();
+ }
+ }
+
+ return KatexVlistNode(
+ rows: rows,
+ debugHtmlNode: kDebugMode ? vlistT : null,
+ );
+ } else {
+ throw KatexHtmlParseError();
+ }
+ } else {
+ throw KatexHtmlParseError();
+ }
+ } else {
+ throw KatexHtmlParseError();
+ }
+ }
+
+ final debugHtmlNode = kDebugMode ? element : null;
+
+ final inlineStyles = _parseSpanInlineStyles(element);
+ if (inlineStyles != null) {
+ // We expect `vertical-align` inline style to be only present on a
+ // `strut` span, for which we emit `KatexStrutNode` separately.
+ if (inlineStyles.verticalAlignEm != null) throw KatexHtmlParseError();
+ }
+
// Aggregate the CSS styles that apply, in the same order as the CSS
// classes specified for this span, mimicking the behaviour on web.
//
@@ -144,7 +299,9 @@ class _KatexParser {
// https://github.com/KaTeX/KaTeX/blob/2fe1941b/src/styles/katex.scss
// A copy of class definition (where possible) is accompanied in a comment
// with each case statement to keep track of updates.
- final spanClasses = List.unmodifiable(element.className.split(' '));
+ final spanClasses = element.className != ''
+ ? List.unmodifiable(element.className.split(' '))
+ : const [];
String? fontFamily;
double? fontSizeEm;
KatexSpanFontWeight? fontWeight;
@@ -161,8 +318,9 @@ class _KatexParser {
case 'strut':
// .strut { ... }
- // Do nothing, it has properties that don't need special handling.
- break;
+ // We expect the 'strut' class to be the only class in a span,
+ // in which case we handle it separately and emit `KatexStrutNode`.
+ throw KatexHtmlParseError();
case 'textbf':
// .textbf { font-weight: bold; }
@@ -275,6 +433,21 @@ class _KatexParser {
fontStyle = KatexSpanFontStyle.normal;
// TODO handle skipped class declarations between .mainrm and
+ // .mspace .
+
+ case 'mspace':
+ // .mspace { ... }
+ // Do nothing, it has properties that don't need special handling.
+ break;
+
+ // TODO handle skipped class declarations between .mspace and
+ // .msupsub .
+
+ case 'msupsub':
+ // .msupsub { text-align: left; }
+ textAlign = KatexSpanTextAlign.left;
+
+ // TODO handle skipped class declarations between .msupsub and
// .sizing .
case 'sizing':
@@ -329,12 +502,19 @@ class _KatexParser {
case 'mord':
case 'mopen':
+ case 'mtight':
+ case 'text':
+ case 'mrel':
+ case 'mop':
+ case 'mclose':
+ case 'minner':
// Ignore these classes because they don't have a CSS definition
// in katex.scss, but we encounter them in the generated HTML.
break;
default:
- _logError('KaTeX: Unsupported CSS class: $spanClass');
+ assert(debugLog('KaTeX: Unsupported CSS class: $spanClass'));
+ _hasError = true;
}
}
final styles = KatexSpanStyles(
@@ -350,14 +530,90 @@ class _KatexParser {
if (element.nodes case [dom.Text(:final data)]) {
text = data;
} else {
- spans = _parseChildSpans(element);
+ spans = _parseChildSpans(element.nodes);
}
if (text == null && spans == null) throw KatexHtmlParseError();
- return KatexNode(
- styles: styles,
+ return KatexSpanNode(
+ styles: inlineStyles != null
+ ? styles.merge(inlineStyles)
+ : styles,
text: text,
- nodes: spans);
+ nodes: spans,
+ debugHtmlNode: debugHtmlNode);
+ }
+
+ KatexSpanStyles? _parseSpanInlineStyles(dom.Element element) {
+ if (element.attributes case {'style': final styleStr}) {
+ // `package:csslib` doesn't seem to have a way to parse inline styles:
+ // https://github.com/dart-lang/tools/issues/1173
+ // So, workaround that by wrapping it in a universal declaration.
+ final stylesheet = css_parser.parse('*{$styleStr}');
+ if (stylesheet.topLevels case [css_visitor.RuleSet() && final rule]) {
+ double? heightEm;
+ double? verticalAlignEm;
+ double? topEm;
+ double? marginRightEm;
+ double? marginLeftEm;
+
+ for (final declaration in rule.declarationGroup.declarations) {
+ if (declaration case css_visitor.Declaration(
+ :final property,
+ expression: css_visitor.Expressions(
+ expressions: [css_visitor.Expression() && final expression]),
+ )) {
+ switch (property) {
+ case 'height':
+ heightEm = _getEm(expression);
+ if (heightEm != null) continue;
+
+ case 'vertical-align':
+ verticalAlignEm = _getEm(expression);
+ if (verticalAlignEm != null) continue;
+
+ case 'top':
+ topEm = _getEm(expression);
+ if (topEm != null) continue;
+
+ case 'margin-right':
+ marginRightEm = _getEm(expression);
+ if (marginRightEm != null) continue;
+
+ case 'margin-left':
+ marginLeftEm = _getEm(expression);
+ if (marginLeftEm != null) continue;
+ }
+
+ // TODO handle more CSS properties
+ assert(debugLog('KaTeX: Unsupported CSS expression:'
+ ' ${expression.toDebugString()}'));
+ _hasError = true;
+ } else {
+ throw KatexHtmlParseError();
+ }
+ }
+
+ return KatexSpanStyles(
+ heightEm: heightEm,
+ topEm: topEm,
+ verticalAlignEm: verticalAlignEm,
+ marginRightEm: marginRightEm,
+ marginLeftEm: marginLeftEm,
+ );
+ } else {
+ throw KatexHtmlParseError();
+ }
+ }
+ return null;
+ }
+
+ /// Returns the CSS `em` unit value if the given [expression] is actually an
+ /// `em` unit expression, else returns null.
+ double? _getEm(css_visitor.Expression expression) {
+ if (expression is css_visitor.EmTerm && expression.value is num) {
+ return (expression.value as num).toDouble();
+ }
+ return null;
}
}
@@ -378,6 +634,14 @@ enum KatexSpanTextAlign {
@immutable
class KatexSpanStyles {
+ final double? heightEm;
+ final double? verticalAlignEm;
+
+ final double? topEm;
+
+ final double? marginRightEm;
+ final double? marginLeftEm;
+
final String? fontFamily;
final double? fontSizeEm;
final KatexSpanFontWeight? fontWeight;
@@ -385,6 +649,11 @@ class KatexSpanStyles {
final KatexSpanTextAlign? textAlign;
const KatexSpanStyles({
+ this.heightEm,
+ this.verticalAlignEm,
+ this.topEm,
+ this.marginRightEm,
+ this.marginLeftEm,
this.fontFamily,
this.fontSizeEm,
this.fontWeight,
@@ -395,6 +664,11 @@ class KatexSpanStyles {
@override
int get hashCode => Object.hash(
'KatexSpanStyles',
+ heightEm,
+ verticalAlignEm,
+ topEm,
+ marginRightEm,
+ marginLeftEm,
fontFamily,
fontSizeEm,
fontWeight,
@@ -405,6 +679,11 @@ class KatexSpanStyles {
@override
bool operator ==(Object other) {
return other is KatexSpanStyles &&
+ other.heightEm == heightEm &&
+ other.verticalAlignEm == verticalAlignEm &&
+ other.topEm == topEm &&
+ other.marginRightEm == marginRightEm &&
+ other.marginLeftEm == marginLeftEm &&
other.fontFamily == fontFamily &&
other.fontSizeEm == fontSizeEm &&
other.fontWeight == fontWeight &&
@@ -415,6 +694,11 @@ class KatexSpanStyles {
@override
String toString() {
final args = [];
+ if (heightEm != null) args.add('heightEm: $heightEm');
+ if (verticalAlignEm != null) args.add('verticalAlignEm: $verticalAlignEm');
+ if (topEm != null) args.add('topEm: $topEm');
+ if (marginRightEm != null) args.add('marginRightEm: $marginRightEm');
+ if (marginLeftEm != null) args.add('marginLeftEm: $marginLeftEm');
if (fontFamily != null) args.add('fontFamily: $fontFamily');
if (fontSizeEm != null) args.add('fontSizeEm: $fontSizeEm');
if (fontWeight != null) args.add('fontWeight: $fontWeight');
@@ -422,6 +706,47 @@ class KatexSpanStyles {
if (textAlign != null) args.add('textAlign: $textAlign');
return '${objectRuntimeType(this, 'KatexSpanStyles')}(${args.join(', ')})';
}
+
+ KatexSpanStyles merge(KatexSpanStyles other) {
+ return KatexSpanStyles(
+ heightEm: other.heightEm ?? heightEm,
+ verticalAlignEm: other.verticalAlignEm ?? verticalAlignEm,
+ topEm: other.topEm ?? topEm,
+ marginRightEm: other.marginRightEm ?? marginRightEm,
+ marginLeftEm: other.marginLeftEm ?? marginLeftEm,
+ fontFamily: other.fontFamily ?? fontFamily,
+ fontSizeEm: other.fontSizeEm ?? fontSizeEm,
+ fontStyle: other.fontStyle ?? fontStyle,
+ fontWeight: other.fontWeight ?? fontWeight,
+ textAlign: other.textAlign ?? textAlign,
+ );
+ }
+
+ KatexSpanStyles filter({
+ bool heightEm = true,
+ bool verticalAlignEm = true,
+ bool topEm = true,
+ bool marginRightEm = true,
+ bool marginLeftEm = true,
+ bool fontFamily = true,
+ bool fontSizeEm = true,
+ bool fontWeight = true,
+ bool fontStyle = true,
+ bool textAlign = true,
+ }) {
+ return KatexSpanStyles(
+ heightEm: heightEm ? this.heightEm : null,
+ verticalAlignEm: verticalAlignEm ? this.verticalAlignEm : null,
+ topEm: topEm ? this.topEm : null,
+ marginRightEm: marginRightEm ? this.marginRightEm : null,
+ marginLeftEm: marginLeftEm ? this.marginLeftEm : null,
+ fontFamily: fontFamily ? this.fontFamily : null,
+ fontSizeEm: fontSizeEm ? this.fontSizeEm : null,
+ fontWeight: fontWeight ? this.fontWeight : null,
+ fontStyle: fontStyle ? this.fontStyle : null,
+ textAlign: textAlign ? this.textAlign : null,
+ );
+ }
}
class KatexHtmlParseError extends Error {
diff --git a/lib/widgets/content.dart b/lib/widgets/content.dart
index 44411434fd..357ccdf9b0 100644
--- a/lib/widgets/content.dart
+++ b/lib/widgets/content.dart
@@ -20,6 +20,7 @@ import 'code_block.dart';
import 'dialog.dart';
import 'icons.dart';
import 'inset_shadow.dart';
+import 'katex.dart';
import 'lightbox.dart';
import 'message_list.dart';
import 'poll.dart';
@@ -818,42 +819,48 @@ class MathBlock extends StatelessWidget {
children: [TextSpan(text: node.texSource)])));
}
- return _Katex(inline: false, nodes: nodes);
+ return Center(
+ child: SingleChildScrollViewWithScrollbar(
+ scrollDirection: Axis.horizontal,
+ child: Katex(
+ textStyle: ContentTheme.of(context).textStylePlainParagraph,
+ nodes: nodes)));
}
}
-// Base text style from .katex class in katex.scss :
-// https://github.com/KaTeX/KaTeX/blob/613c3da8/src/styles/katex.scss#L13-L15
-const kBaseKatexTextStyle = TextStyle(
- fontSize: kBaseFontSize * 1.21,
- fontFamily: 'KaTeX_Main',
- height: 1.2);
+/// Creates a base text style for rendering KaTeX content.
+///
+/// This applies the CSS styles defined in .katex class in katex.scss :
+/// https://github.com/KaTeX/KaTeX/blob/613c3da8/src/styles/katex.scss#L13-L15
+///
+/// Requires the [style.fontSize] to be non-null.
+TextStyle mkBaseKatexTextStyle(TextStyle style) {
+ return style.copyWith(
+ fontSize: style.fontSize! * 1.21,
+ fontFamily: 'KaTeX_Main',
+ height: 1.2,
+ fontWeight: FontWeight.normal,
+ fontStyle: FontStyle.normal);
+}
-class _Katex extends StatelessWidget {
- const _Katex({
- required this.inline,
+class Katex extends StatelessWidget {
+ const Katex({
+ super.key,
+ required this.textStyle,
required this.nodes,
});
- final bool inline;
+ final TextStyle textStyle;
final List nodes;
@override
Widget build(BuildContext context) {
Widget widget = _KatexNodeList(nodes: nodes);
- if (!inline) {
- widget = Center(
- child: SingleChildScrollViewWithScrollbar(
- scrollDirection: Axis.horizontal,
- child: widget));
- }
-
return Directionality(
textDirection: TextDirection.ltr,
- child: DefaultTextStyle(
- style: kBaseKatexTextStyle.copyWith(
- color: ContentTheme.of(context).textStylePlainParagraph.color),
+ child: DefaultTextStyle.merge(
+ style: mkBaseKatexTextStyle(textStyle),
child: widget));
}
}
@@ -870,7 +877,14 @@ class _KatexNodeList extends StatelessWidget {
return WidgetSpan(
alignment: PlaceholderAlignment.baseline,
baseline: TextBaseline.alphabetic,
- child: _KatexSpan(e));
+ child: MediaQuery(
+ data: MediaQueryData(textScaler: TextScaler.noScaling),
+ child: switch (e) {
+ KatexSpanNode() => _KatexSpan(e),
+ KatexStrutNode() => _KatexStrut(e),
+ KatexVlistNode() => _KatexVlist(e),
+ KatexNegativeMarginNode() => _KatexNegativeMargin(e),
+ }));
}))));
}
}
@@ -878,7 +892,7 @@ class _KatexNodeList extends StatelessWidget {
class _KatexSpan extends StatelessWidget {
const _KatexSpan(this.node);
- final KatexNode node;
+ final KatexSpanNode node;
@override
Widget build(BuildContext context) {
@@ -941,7 +955,93 @@ class _KatexSpan extends StatelessWidget {
textAlign: textAlign,
child: widget);
}
- return widget;
+
+ final marginRight = switch (styles.marginRightEm) {
+ double marginRightEm when marginRightEm >= 0 => marginRightEm * em,
+ _ => null,
+ };
+ final marginLeft = switch (styles.marginLeftEm) {
+ double marginLeftEm when marginLeftEm >= 0 => marginLeftEm * em,
+ _ => null,
+ };
+
+ EdgeInsets? margin;
+ if (marginRight != null || marginLeft != null) {
+ margin = EdgeInsets.zero;
+ if (marginRight != null) {
+ margin += EdgeInsets.only(right: marginRight);
+ }
+ if (marginLeft != null) {
+ margin += EdgeInsets.only(left: marginLeft);
+ }
+ }
+
+ return Container(
+ margin: margin,
+ height: styles.heightEm != null
+ ? styles.heightEm! * em
+ : null,
+ transform: styles.topEm != null
+ ? Matrix4.translationValues(0, styles.topEm! * em, 0)
+ : null,
+ child: widget,
+ );
+ }
+}
+
+class _KatexStrut extends StatelessWidget {
+ const _KatexStrut(this.node);
+
+ final KatexStrutNode node;
+
+ @override
+ Widget build(BuildContext context) {
+ final em = DefaultTextStyle.of(context).style.fontSize!;
+
+ final verticalAlignEm = node.verticalAlignEm;
+ if (verticalAlignEm == null) {
+ return SizedBox(height: node.heightEm * em);
+ }
+
+ return SizedBox(
+ height: node.heightEm * em,
+ child: Baseline(
+ baseline: (verticalAlignEm + node.heightEm) * em,
+ baselineType: TextBaseline.alphabetic,
+ child: const Text('')),
+ );
+ }
+}
+
+class _KatexVlist extends StatelessWidget {
+ const _KatexVlist(this.node);
+
+ final KatexVlistNode node;
+
+ @override
+ Widget build(BuildContext context) {
+ final em = DefaultTextStyle.of(context).style.fontSize!;
+
+ return Stack(children: List.unmodifiable(node.rows.map((row) {
+ return Transform.translate(
+ offset: Offset(0, row.verticalOffsetEm * em),
+ child: _KatexSpan(row.node));
+ })));
+ }
+}
+
+class _KatexNegativeMargin extends StatelessWidget {
+ const _KatexNegativeMargin(this.node);
+
+ final KatexNegativeMarginNode node;
+
+ @override
+ Widget build(BuildContext context) {
+ final em = DefaultTextStyle.of(context).style.fontSize!;
+
+ return NegativeLeftOffset(
+ leftOffset: node.leftOffsetEm * em,
+ child: _KatexNodeList(nodes: node.nodes));
}
}
@@ -1263,7 +1363,7 @@ class _InlineContentBuilder {
: WidgetSpan(
alignment: PlaceholderAlignment.baseline,
baseline: TextBaseline.alphabetic,
- child: _Katex(inline: true, nodes: nodes));
+ child: Katex(textStyle: widget.style, nodes: nodes));
case GlobalTimeNode():
return WidgetSpan(alignment: PlaceholderAlignment.middle,
diff --git a/lib/widgets/katex.dart b/lib/widgets/katex.dart
new file mode 100644
index 0000000000..9b89270c8b
--- /dev/null
+++ b/lib/widgets/katex.dart
@@ -0,0 +1,199 @@
+import 'dart:math' as math;
+
+import 'package:flutter/foundation.dart';
+import 'package:flutter/widgets.dart';
+import 'package:flutter/rendering.dart';
+
+class NegativeLeftOffset extends SingleChildRenderObjectWidget {
+ NegativeLeftOffset({super.key, required this.leftOffset, super.child})
+ : assert(leftOffset.isNegative),
+ _padding = EdgeInsets.only(left: leftOffset);
+
+ final double leftOffset;
+ final EdgeInsetsGeometry _padding;
+
+ @override
+ RenderNegativePadding createRenderObject(BuildContext context) {
+ return RenderNegativePadding(
+ padding: _padding,
+ textDirection: Directionality.maybeOf(context));
+ }
+
+ @override
+ void updateRenderObject(
+ BuildContext context,
+ RenderNegativePadding renderObject,
+ ) {
+ renderObject
+ ..padding = _padding
+ ..textDirection = Directionality.maybeOf(context);
+ }
+
+ @override
+ void debugFillProperties(DiagnosticPropertiesBuilder properties) {
+ super.debugFillProperties(properties);
+ properties.add(DiagnosticsProperty('padding', _padding));
+ }
+}
+
+// Like [RenderPadding] but only supports negative values.
+// TODO(upstream): give Padding an option to accept negative padding (at cost of hit-testing not working)
+class RenderNegativePadding extends RenderShiftedBox {
+ RenderNegativePadding({
+ required EdgeInsetsGeometry padding,
+ TextDirection? textDirection,
+ RenderBox? child,
+ }) : assert(!padding.isNonNegative),
+ _textDirection = textDirection,
+ _padding = padding,
+ super(child);
+
+ EdgeInsets? _resolvedPaddingCache;
+ EdgeInsets get _resolvedPadding {
+ final EdgeInsets returnValue = _resolvedPaddingCache ??= padding.resolve(textDirection);
+ return returnValue;
+ }
+
+ void _markNeedResolution() {
+ _resolvedPaddingCache = null;
+ markNeedsLayout();
+ }
+
+ /// The amount to pad the child in each dimension.
+ ///
+ /// If this is set to an [EdgeInsetsDirectional] object, then [textDirection]
+ /// must not be null.
+ EdgeInsetsGeometry get padding => _padding;
+ EdgeInsetsGeometry _padding;
+ set padding(EdgeInsetsGeometry value) {
+ assert(!value.isNonNegative);
+ if (_padding == value) {
+ return;
+ }
+ _padding = value;
+ _markNeedResolution();
+ }
+
+ /// The text direction with which to resolve [padding].
+ ///
+ /// This may be changed to null, but only after the [padding] has been changed
+ /// to a value that does not depend on the direction.
+ TextDirection? get textDirection => _textDirection;
+ TextDirection? _textDirection;
+ set textDirection(TextDirection? value) {
+ if (_textDirection == value) {
+ return;
+ }
+ _textDirection = value;
+ _markNeedResolution();
+ }
+
+ @override
+ double computeMinIntrinsicWidth(double height) {
+ final EdgeInsets padding = _resolvedPadding;
+ if (child != null) {
+ // Relies on double.infinity absorption.
+ return child!.getMinIntrinsicWidth(math.max(0.0, height - padding.vertical)) +
+ padding.horizontal;
+ }
+ return padding.horizontal;
+ }
+
+ @override
+ double computeMaxIntrinsicWidth(double height) {
+ final EdgeInsets padding = _resolvedPadding;
+ if (child != null) {
+ // Relies on double.infinity absorption.
+ return child!.getMaxIntrinsicWidth(math.max(0.0, height - padding.vertical)) +
+ padding.horizontal;
+ }
+ return padding.horizontal;
+ }
+
+ @override
+ double computeMinIntrinsicHeight(double width) {
+ final EdgeInsets padding = _resolvedPadding;
+ if (child != null) {
+ // Relies on double.infinity absorption.
+ return child!.getMinIntrinsicHeight(math.max(0.0, width - padding.horizontal)) +
+ padding.vertical;
+ }
+ return padding.vertical;
+ }
+
+ @override
+ double computeMaxIntrinsicHeight(double width) {
+ final EdgeInsets padding = _resolvedPadding;
+ if (child != null) {
+ // Relies on double.infinity absorption.
+ return child!.getMaxIntrinsicHeight(math.max(0.0, width - padding.horizontal)) +
+ padding.vertical;
+ }
+ return padding.vertical;
+ }
+
+ @override
+ @protected
+ Size computeDryLayout(covariant BoxConstraints constraints) {
+ final EdgeInsets padding = _resolvedPadding;
+ if (child == null) {
+ return constraints.constrain(Size(padding.horizontal, padding.vertical));
+ }
+ final BoxConstraints innerConstraints = constraints.deflate(padding);
+ final Size childSize = child!.getDryLayout(innerConstraints);
+ return constraints.constrain(
+ Size(padding.horizontal + childSize.width, padding.vertical + childSize.height),
+ );
+ }
+
+ @override
+ double? computeDryBaseline(covariant BoxConstraints constraints, TextBaseline baseline) {
+ final RenderBox? child = this.child;
+ if (child == null) {
+ return null;
+ }
+ final EdgeInsets padding = _resolvedPadding;
+ final BoxConstraints innerConstraints = constraints.deflate(padding);
+ final BaselineOffset result =
+ BaselineOffset(child.getDryBaseline(innerConstraints, baseline)) + padding.top;
+ return result.offset;
+ }
+
+ @override
+ void performLayout() {
+ final BoxConstraints constraints = this.constraints;
+ final EdgeInsets padding = _resolvedPadding;
+ if (child == null) {
+ size = constraints.constrain(Size(padding.horizontal, padding.vertical));
+ return;
+ }
+ final BoxConstraints innerConstraints = constraints.deflate(padding);
+ child!.layout(innerConstraints, parentUsesSize: true);
+ final BoxParentData childParentData = child!.parentData! as BoxParentData;
+ childParentData.offset = Offset(padding.left, padding.top);
+ size = constraints.constrain(
+ Size(padding.horizontal + child!.size.width, padding.vertical + child!.size.height),
+ );
+ }
+
+ @override
+ void debugPaintSize(PaintingContext context, Offset offset) {
+ super.debugPaintSize(context, offset);
+ assert(() {
+ final Rect outerRect = offset & size;
+ debugPaintPadding(
+ context.canvas,
+ outerRect,
+ child != null ? _resolvedPaddingCache!.deflateRect(outerRect) : null,
+ );
+ return true;
+ }());
+ }
+
+ @override
+ void debugFillProperties(DiagnosticPropertiesBuilder properties) {
+ super.debugFillProperties(properties);
+ properties.add(DiagnosticsProperty('padding', padding));
+ properties.add(EnumProperty('textDirection', textDirection, defaultValue: null));
+ }
+}
diff --git a/test/model/content_test.dart b/test/model/content_test.dart
index 5ab60c8e7e..308023f46f 100644
--- a/test/model/content_test.dart
+++ b/test/model/content_test.dart
@@ -518,9 +518,9 @@ class ContentExample {
' \\lambda '
'λ
',
MathInlineNode(texSource: r'\lambda', nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: []),
- KatexNode(
+ KatexSpanNode(styles: KatexSpanStyles(), text: null, nodes: [
+ KatexStrutNode(heightEm: 0.6944, verticalAlignEm: null),
+ KatexSpanNode(
styles: KatexSpanStyles(
fontFamily: 'KaTeX_Math',
fontStyle: KatexSpanFontStyle.italic),
@@ -529,7 +529,7 @@ class ContentExample {
]),
]));
- static final mathBlock = ContentExample(
+ static const mathBlock = ContentExample(
'math block',
"```math\n\\lambda\n```",
expectedText: r'\lambda',
@@ -538,9 +538,9 @@ class ContentExample {
'\\lambda'
'λ',
[MathBlockNode(texSource: r'\lambda', nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: []),
- KatexNode(
+ KatexSpanNode(styles: KatexSpanStyles(), text: null, nodes: [
+ KatexStrutNode(heightEm: 0.6944, verticalAlignEm: null),
+ KatexSpanNode(
styles: KatexSpanStyles(
fontFamily: 'KaTeX_Math',
fontStyle: KatexSpanFontStyle.italic),
@@ -549,7 +549,7 @@ class ContentExample {
]),
])]);
- static final mathBlocksMultipleInParagraph = ContentExample(
+ static const mathBlocksMultipleInParagraph = ContentExample(
'math blocks, multiple in paragraph',
'```math\na\n\nb\n```',
// https://chat.zulip.org/#narrow/channel/7-test-here/topic/.E2.9C.94.20Rajesh/near/2001490
@@ -563,9 +563,9 @@ class ContentExample {
'b'
'b', [
MathBlockNode(texSource: 'a', nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: []),
- KatexNode(
+ KatexSpanNode(styles: KatexSpanStyles(), text: null, nodes: [
+ KatexStrutNode(heightEm: 0.4306, verticalAlignEm: null),
+ KatexSpanNode(
styles: KatexSpanStyles(
fontFamily: 'KaTeX_Math',
fontStyle: KatexSpanFontStyle.italic),
@@ -574,9 +574,9 @@ class ContentExample {
]),
]),
MathBlockNode(texSource: 'b', nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: []),
- KatexNode(
+ KatexSpanNode(styles: KatexSpanStyles(), text: null, nodes: [
+ KatexStrutNode(heightEm: 0.6944, verticalAlignEm: null),
+ KatexSpanNode(
styles: KatexSpanStyles(
fontFamily: 'KaTeX_Math',
fontStyle: KatexSpanFontStyle.italic),
@@ -586,7 +586,7 @@ class ContentExample {
]),
]);
- static final mathBlockInQuote = ContentExample(
+ static const mathBlockInQuote = ContentExample(
'math block in quote',
// There's sometimes a quirky extra `
\n` at the end of the `` that
// encloses the math block. In particular this happens when the math block
@@ -602,9 +602,9 @@ class ContentExample {
'
\n
\n',
[QuotationNode([
MathBlockNode(texSource: r'\lambda', nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: []),
- KatexNode(
+ KatexSpanNode(styles: KatexSpanStyles(), text: null, nodes: [
+ KatexStrutNode(heightEm: 0.6944, verticalAlignEm: null),
+ KatexSpanNode(
styles: KatexSpanStyles(
fontFamily: 'KaTeX_Math',
fontStyle: KatexSpanFontStyle.italic),
@@ -614,7 +614,7 @@ class ContentExample {
]),
])]);
- static final mathBlocksMultipleInQuote = ContentExample(
+ static const mathBlocksMultipleInQuote = ContentExample(
'math blocks, multiple in quote',
"````quote\n```math\na\n\nb\n```\n````",
// https://chat.zulip.org/#narrow/channel/7-test-here/topic/.E2.9C.94.20Rajesh/near/2029236
@@ -631,9 +631,9 @@ class ContentExample {
'
\n\n',
[QuotationNode([
MathBlockNode(texSource: 'a', nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: []),
- KatexNode(
+ KatexSpanNode(styles: KatexSpanStyles(), text: null, nodes: [
+ KatexStrutNode(heightEm: 0.4306, verticalAlignEm: null),
+ KatexSpanNode(
styles: KatexSpanStyles(
fontFamily: 'KaTeX_Math',
fontStyle: KatexSpanFontStyle.italic),
@@ -642,9 +642,9 @@ class ContentExample {
]),
]),
MathBlockNode(texSource: 'b', nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: []),
- KatexNode(
+ KatexSpanNode(styles: KatexSpanStyles(), text: null, nodes: [
+ KatexStrutNode(heightEm: 0.6944, verticalAlignEm: null),
+ KatexSpanNode(
styles: KatexSpanStyles(
fontFamily: 'KaTeX_Math',
fontStyle: KatexSpanFontStyle.italic),
@@ -654,7 +654,7 @@ class ContentExample {
]),
])]);
- static final mathBlockBetweenImages = ContentExample(
+ static const mathBlockBetweenImages = ContentExample(
'math block between images',
// https://chat.zulip.org/#narrow/channel/7-test-here/topic/Greg/near/2035891
'https://upload.wikimedia.org/wikipedia/commons/7/78/Verregende_bloem_van_een_Helenium_%27El_Dorado%27._22-07-2023._%28d.j.b%29.jpg\n```math\na\n```\nhttps://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Zaadpluizen_van_een_Clematis_texensis_%27Princess_Diana%27._18-07-2023_%28actm.%29_02.jpg/1280px-Zaadpluizen_van_een_Clematis_texensis_%27Princess_Diana%27._18-07-2023_%28actm.%29_02.jpg',
@@ -680,9 +680,9 @@ class ContentExample {
originalHeight: null),
]),
MathBlockNode(texSource: 'a', nodes: [
- KatexNode(styles: KatexSpanStyles(), text: null, nodes: [
- KatexNode(styles: KatexSpanStyles(),text: null, nodes: []),
- KatexNode(
+ KatexSpanNode(styles: KatexSpanStyles(), text: null, nodes: [
+ KatexStrutNode(heightEm: 0.4306, verticalAlignEm: null),
+ KatexSpanNode(
styles: KatexSpanStyles(
fontFamily: 'KaTeX_Math',
fontStyle: KatexSpanFontStyle.italic),
@@ -702,7 +702,7 @@ class ContentExample {
// The font sizes can be compared using the katex.css generated
// from katex.scss :
// https://unpkg.com/katex@0.16.21/dist/katex.css
- static final mathBlockKatexSizing = ContentExample(
+ static const mathBlockKatexSizing = ContentExample(
'math block; KaTeX different sizing',
// https://chat.zulip.org/#narrow/channel/7-test-here/topic/Rajesh/near/2155476
'```math\n\\Huge 1\n\\huge 2\n\\LARGE 3\n\\Large 4\n\\large 5\n\\normalsize 6\n\\small 7\n\\footnotesize 8\n\\scriptsize 9\n\\tiny 0\n```',
@@ -727,51 +727,48 @@ class ContentExample {
MathBlockNode(
texSource: "\\Huge 1\n\\huge 2\n\\LARGE 3\n\\Large 4\n\\large 5\n\\normalsize 6\n\\small 7\n\\footnotesize 8\n\\scriptsize 9\n\\tiny 0",
nodes: [
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(),
text: null,
nodes: [
- KatexNode(
- styles: KatexSpanStyles(),
- text: null,
- nodes: []),
- KatexNode(
+ KatexStrutNode(heightEm: 1.6034, verticalAlignEm: null),
+ KatexSpanNode(
styles: KatexSpanStyles(fontSizeEm: 2.488), // .reset-size6.size11
text: '1',
nodes: null),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontSizeEm: 2.074), // .reset-size6.size10
text: '2',
nodes: null),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontSizeEm: 1.728), // .reset-size6.size9
text: '3',
nodes: null),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontSizeEm: 1.44), // .reset-size6.size8
text: '4',
nodes: null),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontSizeEm: 1.2), // .reset-size6.size7
text: '5',
nodes: null),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontSizeEm: 1.0), // .reset-size6.size6
text: '6',
nodes: null),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontSizeEm: 0.9), // .reset-size6.size5
text: '7',
nodes: null),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontSizeEm: 0.8), // .reset-size6.size4
text: '8',
nodes: null),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontSizeEm: 0.7), // .reset-size6.size3
text: '9',
nodes: null),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontSizeEm: 0.5), // .reset-size6.size1
text: '0',
nodes: null),
@@ -779,7 +776,7 @@ class ContentExample {
]),
]);
- static final mathBlockKatexNestedSizing = ContentExample(
+ static const mathBlockKatexNestedSizing = ContentExample(
'math block; KaTeX nested sizing',
'```math\n\\tiny {1 \\Huge 2}\n```',
''
@@ -796,23 +793,20 @@ class ContentExample {
MathBlockNode(
texSource: '\\tiny {1 \\Huge 2}',
nodes: [
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(),
text: null,
nodes: [
- KatexNode(
- styles: KatexSpanStyles(),
- text: null,
- nodes: []),
- KatexNode(
+ KatexStrutNode(heightEm: 1.6034, verticalAlignEm: null),
+ KatexSpanNode(
styles: KatexSpanStyles(fontSizeEm: 0.5), // reset-size6 size1
text: null,
nodes: [
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(),
text: '1',
nodes: null),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontSizeEm: 4.976), // reset-size1 size11
text: '2',
nodes: null),
@@ -821,7 +815,7 @@ class ContentExample {
]),
]);
- static final mathBlockKatexDelimSizing = ContentExample(
+ static const mathBlockKatexDelimSizing = ContentExample(
'math block; KaTeX delimiter sizing',
// https://chat.zulip.org/#narrow/channel/7-test-here/topic/Rajesh/near/2147135
'```math\n⟨ \\big( \\Big[ \\bigg⌈ \\Bigg⌊\n```',
@@ -841,50 +835,47 @@ class ContentExample {
MathBlockNode(
texSource: '⟨ \\big( \\Big[ \\bigg⌈ \\Bigg⌊',
nodes: [
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(),
text: null,
nodes: [
- KatexNode(
- styles: KatexSpanStyles(),
- text: null,
- nodes: []),
- KatexNode(
+ KatexStrutNode(heightEm: 3, verticalAlignEm: -1.25),
+ KatexSpanNode(
styles: KatexSpanStyles(),
text: '⟨',
nodes: null),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(),
text: null,
nodes: [
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontFamily: 'KaTeX_Size1'),
text: '(',
nodes: null),
]),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(),
text: null,
nodes: [
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontFamily: 'KaTeX_Size2'),
text: '[',
nodes: null),
]),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(),
text: null,
nodes: [
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontFamily: 'KaTeX_Size3'),
text: '⌈',
nodes: null),
]),
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(),
text: null,
nodes: [
- KatexNode(
+ KatexSpanNode(
styles: KatexSpanStyles(fontFamily: 'KaTeX_Size4'),
text: '⌊',
nodes: null),
@@ -893,6 +884,522 @@ class ContentExample {
]),
]);
+ static const mathBlockKatexVertical1 = ContentExample(
+ 'math block katex vertical 1',
+ // https://chat.zulip.org/#narrow/channel/7-test-here/topic/Rajesh/near/2176734
+ '```math\na\'\n```',
+ '
'
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ 'a'
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ '′
',
+ [
+ MathBlockNode(
+ texSource: 'a\'',
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexStrutNode(heightEm: 0.8019, verticalAlignEm: null),
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Math',
+ fontStyle: KatexSpanFontStyle.italic),
+ text: 'a',
+ nodes: null),
+ KatexSpanNode(
+ styles: KatexSpanStyles(textAlign: KatexSpanTextAlign.left),
+ text: null,
+ nodes: [
+ KatexVlistNode(
+ rows: [
+ KatexVlistRowNode(
+ verticalOffsetEm: -3.113 + 2.7,
+ node: KatexSpanNode(
+ styles: KatexSpanStyles(marginRightEm: 0.05),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(fontSizeEm: 0.7),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: '′',
+ nodes: null),
+ ]),
+ ]),
+ ])),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]);
+
+ static const mathBlockKatexVertical2 = ContentExample(
+ 'math block katex vertical 2',
+ // https://chat.zulip.org/#narrow/channel/7-test-here/topic/Rajesh/near/2176735
+ '```math\nx_n\n```',
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ 'x'
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ 'n'
+ ''
+ ''
+ '
',
+ [
+ MathBlockNode(
+ texSource: 'x_n',
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexStrutNode(heightEm: 0.5806, verticalAlignEm: -0.15),
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Math',
+ fontStyle: KatexSpanFontStyle.italic),
+ text: 'x',
+ nodes: null),
+ KatexSpanNode(
+ styles: KatexSpanStyles(textAlign: KatexSpanTextAlign.left),
+ text: null,
+ nodes: [
+ KatexVlistNode(
+ rows: [
+ KatexVlistRowNode(
+ verticalOffsetEm: -2.55 + 2.7,
+ node: KatexSpanNode(
+ styles: KatexSpanStyles(
+ marginLeftEm: 0,
+ marginRightEm: 0.05),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(fontSizeEm: 0.7),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Math',
+ fontStyle: KatexSpanFontStyle.italic),
+ text: 'n',
+ nodes: null),
+ ]),
+ ])),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]);
+
+ static const mathBlockKatexVertical3 = ContentExample(
+ 'math block katex vertical 3',
+ // https://chat.zulip.org/#narrow/channel/7-test-here/topic/Rajesh/near/2176737
+ '```math\ne^x\n```',
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ 'e'
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ 'x
',
+ [
+ MathBlockNode(
+ texSource: 'e^x',
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexStrutNode(heightEm: 0.7144, verticalAlignEm: null),
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Math',
+ fontStyle: KatexSpanFontStyle.italic),
+ text: 'e',
+ nodes: null),
+ KatexSpanNode(
+ styles: KatexSpanStyles(textAlign: KatexSpanTextAlign.left),
+ text: null,
+ nodes: [
+ KatexVlistNode(
+ rows: [
+ KatexVlistRowNode(
+ verticalOffsetEm: -3.113 + 2.7,
+ node: KatexSpanNode(
+ styles: KatexSpanStyles(marginRightEm: 0.05),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(fontSizeEm: 0.7),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Math',
+ fontStyle: KatexSpanFontStyle.italic),
+ text: 'x',
+ nodes: null),
+ ]),
+ ])),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]);
+
+ static const mathBlockKatexVertical4 = ContentExample(
+ 'math block katex vertical 4',
+ // https://chat.zulip.org/#narrow/channel/7-test-here/topic/Rajesh/near/2176738
+ '```math\n_u^o\n```',
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ 'u'
+ ''
+ ''
+ ''
+ 'o'
+ ''
+ ''
+ '
',
+ [
+ MathBlockNode(
+ texSource: "_u^o",
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexStrutNode(heightEm: 0.9614, verticalAlignEm: -0.247),
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: []),
+ KatexSpanNode(
+ styles: KatexSpanStyles(textAlign: KatexSpanTextAlign.left),
+ text: null,
+ nodes: [
+ KatexVlistNode(
+ rows: [
+ KatexVlistRowNode(
+ verticalOffsetEm: -2.453 + 2.7,
+ node: KatexSpanNode(
+ styles: KatexSpanStyles(marginRightEm: 0.05),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(fontSizeEm: 0.7),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Math',
+ fontStyle: KatexSpanFontStyle.italic),
+ text: 'u',
+ nodes: null),
+ ]),
+ ])),
+ KatexVlistRowNode(
+ verticalOffsetEm: -3.113 + 2.7,
+ node: KatexSpanNode(
+ styles: KatexSpanStyles(marginRightEm: 0.05),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(fontSizeEm: 0.7),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Math',
+ fontStyle: KatexSpanFontStyle.italic),
+ text: 'o',
+ nodes: null),
+ ]),
+ ])),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]);
+
+ static const mathBlockKatexVertical5 = ContentExample(
+ 'math block katex vertical 5',
+ // https://chat.zulip.org/#narrow/channel/7-test-here/topic/Rajesh/near/2176739
+ '```math\na\\raisebox{0.25em}{\$b\$}c\n```',
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ 'a'
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ 'b'
+ 'c
',
+ [
+ MathBlockNode(
+ texSource: 'a\\raisebox{0.25em}{\$b\$}c',
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexStrutNode(heightEm: 0.9444, verticalAlignEm: null),
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Math',
+ fontStyle: KatexSpanFontStyle.italic),
+ text: 'a',
+ nodes: null),
+ KatexVlistNode(
+ rows: [
+ KatexVlistRowNode(
+ verticalOffsetEm: -3.25 + 3,
+ node: KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Math',
+ fontStyle: KatexSpanFontStyle.italic),
+ text: 'b',
+ nodes: null),
+ ]),
+ ])),
+ ]),
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Math',
+ fontStyle: KatexSpanFontStyle.italic),
+ text: 'c',
+ nodes: null),
+ ]),
+ ]),
+ ]);
+
+ static const mathBlockKatexNegativeMargins = ContentExample(
+ 'math block katex negative margins',
+ '```math\n\\KaTeX\n```',
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ 'K'
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ 'A'
+ ''
+ ''
+ 'T'
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ ''
+ 'E'
+ ''
+ ''
+ ''
+ ''
+ 'X
',
+ [
+ MathBlockNode(
+ texSource: '\\KaTeX',
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexStrutNode(heightEm: 0.8988, verticalAlignEm: -0.2155),
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(fontFamily: 'KaTeX_Main'),
+ text: 'K',
+ nodes: null),
+ KatexSpanNode(
+ styles: KatexSpanStyles(marginRightEm: -0.17),
+ text: null,
+ nodes: []),
+ KatexNegativeMarginNode(
+ leftOffsetEm: -0.17,
+ nodes: [
+ KatexVlistNode(
+ rows: [
+ KatexVlistRowNode(
+ verticalOffsetEm: -2.905 + 2.7,
+ node: KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Main',
+ fontSizeEm: 0.7),
+ text: 'A',
+ nodes: null),
+ ])),
+ ]),
+ KatexSpanNode(
+ styles: KatexSpanStyles(marginRightEm: -0.15),
+ text: null,
+ nodes: []),
+ KatexNegativeMarginNode(
+ leftOffsetEm: -0.15,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Main'),
+ text: 'T',
+ nodes: null),
+ KatexSpanNode(
+ styles: KatexSpanStyles(marginRightEm: -0.1667),
+ text: null,
+ nodes: []),
+ KatexNegativeMarginNode(
+ leftOffsetEm: -0.1667,
+ nodes: [
+ KatexVlistNode(
+ rows: [
+ KatexVlistRowNode(
+ verticalOffsetEm: -2.7845 + 3,
+ node: KatexSpanNode(
+ styles: KatexSpanStyles(),
+ text: null,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Main'),
+ text: 'E',
+ nodes: null),
+ ])),
+ ]),
+ KatexSpanNode(
+ styles: KatexSpanStyles(marginRightEm: -0.125),
+ text: null,
+ nodes: []),
+ KatexNegativeMarginNode(
+ leftOffsetEm: -0.125,
+ nodes: [
+ KatexSpanNode(
+ styles: KatexSpanStyles(
+ fontFamily: 'KaTeX_Main'),
+ text: 'X',
+ nodes: null),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]),
+ ]);
+
static const imageSingle = ContentExample(
'single image',
// https://chat.zulip.org/#narrow/stream/7-test-here/topic/Thumbnails/near/1900103
@@ -1642,15 +2149,18 @@ UnimplementedInlineContentNode inlineUnimplemented(String html) {
return UnimplementedInlineContentNode(htmlNode: fragment.nodes.single);
}
-void testParse(String name, String html, List nodes) {
+void testParse(String name, String html, List nodes, {
+ Object? skip,
+}) {
test(name, () {
check(parseContent(html))
.equalsNode(ZulipContent(nodes: nodes));
- });
+ }, skip: skip);
}
-void testParseExample(ContentExample example) {
- testParse('parse ${example.description}', example.html, example.expectedNodes);
+void testParseExample(ContentExample example, {Object? skip}) {
+ testParse('parse ${example.description}', example.html, example.expectedNodes,
+ skip: skip);
}
void main() async {
@@ -1961,6 +2471,12 @@ void main() async {
testParseExample(ContentExample.mathBlockKatexSizing);
testParseExample(ContentExample.mathBlockKatexNestedSizing);
testParseExample(ContentExample.mathBlockKatexDelimSizing);
+ testParseExample(ContentExample.mathBlockKatexVertical1);
+ testParseExample(ContentExample.mathBlockKatexVertical2);
+ testParseExample(ContentExample.mathBlockKatexVertical3);
+ testParseExample(ContentExample.mathBlockKatexVertical4);
+ testParseExample(ContentExample.mathBlockKatexVertical5);
+ testParseExample(ContentExample.mathBlockKatexNegativeMargins);
testParseExample(ContentExample.imageSingle);
testParseExample(ContentExample.imageSingleNoDimensions);
@@ -2034,7 +2550,7 @@ void main() async {
r'^\s*static\s+(?:const|final)\s+(\w+)\s*=\s*ContentExample\s*(?:\.\s*inline\s*)?\(',
).allMatches(source).map((m) => m.group(1));
final testedExamples = RegExp(multiLine: true,
- r'^\s*testParseExample\s*\(\s*ContentExample\s*\.\s*(\w+)\);',
+ r'^\s*testParseExample\s*\(\s*ContentExample\s*\.\s*(\w+)(?:,\s*skip:\s*true)?\s*\);',
).allMatches(source).map((m) => m.group(1));
check(testedExamples).unorderedEquals(declaredExamples);
}, skip: Platform.isWindows, // [intended] purely analyzes source, so
diff --git a/test/widgets/content_test.dart b/test/widgets/content_test.dart
index b5150a54ee..2611dedb46 100644
--- a/test/widgets/content_test.dart
+++ b/test/widgets/content_test.dart
@@ -3,6 +3,7 @@ import 'package:flutter/cupertino.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
+import 'package:flutter/services.dart';
import 'package:flutter_checks/flutter_checks.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:url_launcher/url_launcher.dart';
@@ -595,15 +596,20 @@ void main() {
final content = ContentExample.mathBlockKatexSizing;
await prepareContent(tester, plainContent(content.html));
+ final context = tester.element(find.byType(MathBlock));
+ final baseTextStyle =
+ mkBaseKatexTextStyle(ContentTheme.of(context).textStylePlainParagraph);
+
final mathBlockNode = content.expectedNodes.single as MathBlockNode;
- final baseNode = mathBlockNode.nodes!.single;
+ final baseNode = mathBlockNode.nodes!.single as KatexSpanNode;
final nodes = baseNode.nodes!.skip(1); // Skip .strut node.
- for (final katexNode in nodes) {
- final fontSize = katexNode.styles.fontSizeEm! * kBaseKatexTextStyle.fontSize!;
+ for (var katexNode in nodes) {
+ katexNode = katexNode as KatexSpanNode;
+ final fontSize = katexNode.styles.fontSizeEm! * baseTextStyle.fontSize!;
checkKatexText(tester, katexNode.text!,
fontFamily: 'KaTeX_Main',
fontSize: fontSize,
- fontHeight: kBaseKatexTextStyle.height!);
+ fontHeight: baseTextStyle.height!);
}
});
@@ -616,17 +622,21 @@ void main() {
final content = ContentExample.mathBlockKatexNestedSizing;
await prepareContent(tester, plainContent(content.html));
- var fontSize = 0.5 * kBaseKatexTextStyle.fontSize!;
+ final context = tester.element(find.byType(MathBlock));
+ final baseTextStyle =
+ mkBaseKatexTextStyle(ContentTheme.of(context).textStylePlainParagraph);
+
+ var fontSize = 0.5 * baseTextStyle.fontSize!;
checkKatexText(tester, '1',
fontFamily: 'KaTeX_Main',
fontSize: fontSize,
- fontHeight: kBaseKatexTextStyle.height!);
+ fontHeight: baseTextStyle.height!);
fontSize = 4.976 * fontSize;
checkKatexText(tester, '2',
fontFamily: 'KaTeX_Main',
fontSize: fontSize,
- fontHeight: kBaseKatexTextStyle.height!);
+ fontHeight: baseTextStyle.height!);
});
testWidgets('displays KaTeX content with different delimiter sizing', (tester) async {
@@ -639,25 +649,88 @@ void main() {
await prepareContent(tester, plainContent(content.html));
final mathBlockNode = content.expectedNodes.single as MathBlockNode;
- final baseNode = mathBlockNode.nodes!.single;
+ final baseNode = mathBlockNode.nodes!.single as KatexSpanNode;
var nodes = baseNode.nodes!.skip(1); // Skip .strut node.
- final fontSize = kBaseKatexTextStyle.fontSize!;
+ final context = tester.element(find.byType(MathBlock));
+ final baseTextStyle =
+ mkBaseKatexTextStyle(ContentTheme.of(context).textStylePlainParagraph);
- final firstNode = nodes.first;
+ final firstNode = nodes.first as KatexSpanNode;
checkKatexText(tester, firstNode.text!,
fontFamily: 'KaTeX_Main',
- fontSize: fontSize,
- fontHeight: kBaseKatexTextStyle.height!);
+ fontSize: baseTextStyle.fontSize!,
+ fontHeight: baseTextStyle.height!);
nodes = nodes.skip(1);
for (var katexNode in nodes) {
- katexNode = katexNode.nodes!.single; // Skip empty .mord parent.
+ katexNode = katexNode as KatexSpanNode;
+ katexNode = katexNode.nodes!.single as KatexSpanNode; // Skip empty .mord parent.
final fontFamily = katexNode.styles.fontFamily!;
checkKatexText(tester, katexNode.text!,
fontFamily: fontFamily,
- fontSize: fontSize,
- fontHeight: kBaseKatexTextStyle.height!);
+ fontSize: baseTextStyle.fontSize!,
+ fontHeight: baseTextStyle.height!);
+ }
+ });
+
+ group('characters render at specific offsets with specific size: ', () {
+ final testCases = [
+ (ContentExample.mathBlockKatexVertical1, [
+ ('a', Offset(0.0, 5.28), Size(10.88, 25.0)),
+ ('′', Offset(10.88, 1.13), Size(3.96, 17.0)),
+ ]),
+ (ContentExample.mathBlockKatexVertical2, [
+ ('x', Offset(0.0, 5.28), Size(11.76, 25.0)),
+ ('n', Offset(11.76, 13.65), Size(8.63, 17.0)),
+ ]),
+ (ContentExample.mathBlockKatexVertical3, [
+ ('e', Offset(0.0, 5.28), Size(9.58, 25.0)),
+ ('x', Offset(9.58, 2.07), Size(8.23, 17.0)),
+ ]),
+ (ContentExample.mathBlockKatexVertical4, [
+ ('u', Offset(0.0, 15.65), Size(8.23, 17.0)),
+ ('o', Offset(0.0, 2.07), Size(6.98, 17.0)),
+ ]),
+ (ContentExample.mathBlockKatexVertical5, [
+ ('a', Offset(0.0, 4.16), Size(10.88, 25.0)),
+ ('b', Offset(10.88, -0.66), Size(8.82, 25.0)),
+ ('c', Offset(19.70, 4.16), Size(8.90, 25.0)),
+ ]),
+ (ContentExample.mathBlockKatexNegativeMargins, [
+ ('K', Offset(0.0, 8.64), Size(16.0, 25.0)),
+ ('A', Offset(12.50, 10.85), Size(10.79, 17.0)),
+ ('T', Offset(20.21, 9.36), Size(14.85, 25.0)),
+ ('E', Offset(31.63, 14.52), Size(14.0, 25.0)),
+ ('X', Offset(43.06, 9.85), Size(15.42, 25.0)),
+ ]),
+ ];
+
+ for (final testCase in testCases) {
+ testWidgets(testCase.$1.description, (tester) async {
+ await _loadKatexFonts();
+
+ addTearDown(testBinding.reset);
+ final globalSettings = testBinding.globalStore.settings;
+ await globalSettings.setBool(BoolGlobalSetting.renderKatex, true);
+ check(globalSettings).getBool(BoolGlobalSetting.renderKatex).isTrue();
+
+ await prepareContent(tester, plainContent(testCase.$1.html));
+
+ final baseRect = tester.getRect(find.byType(Katex));
+
+ for (final characterData in testCase.$2) {
+ final character = characterData.$1;
+ final topLeftOffset = characterData.$2;
+ final size = characterData.$3;
+
+ final rect = tester.getRect(find.text(character));
+ check(rect.topLeft - baseRect.topLeft)
+ .within(distance: 0.02, from: topLeftOffset);
+ check(rect.size)
+ .within(distance: 0.02, from: size);
+ }
+ });
}
});
});
@@ -1408,3 +1481,48 @@ void main() {
});
});
}
+
+Future _loadKatexFonts() async {
+ const fonts = {
+ 'KaTeX_AMS': ['KaTeX_AMS-Regular.ttf'],
+ 'KaTeX_Caligraphic': [
+ 'KaTeX_Caligraphic-Regular.ttf',
+ 'KaTeX_Caligraphic-Bold.ttf',
+ ],
+ 'KaTeX_Fraktur': [
+ 'KaTeX_Fraktur-Regular.ttf',
+ 'KaTeX_Fraktur-Bold.ttf',
+ ],
+ 'KaTeX_Main': [
+ 'KaTeX_Main-Regular.ttf',
+ 'KaTeX_Main-Bold.ttf',
+ 'KaTeX_Main-Italic.ttf',
+ 'KaTeX_Main-BoldItalic.ttf',
+ ],
+ 'KaTeX_Math': [
+ 'KaTeX_Math-Italic.ttf',
+ 'KaTeX_Math-BoldItalic.ttf',
+ ],
+ 'KaTeX_SansSerif': [
+ 'KaTeX_SansSerif-Regular.ttf',
+ 'KaTeX_SansSerif-Bold.ttf',
+ 'KaTeX_SansSerif-Italic.ttf',
+ ],
+ 'KaTeX_Script': ['KaTeX_Script-Regular.ttf'],
+ 'KaTeX_Size1': ['KaTeX_Size1-Regular.ttf'],
+ 'KaTeX_Size2': ['KaTeX_Size2-Regular.ttf'],
+ 'KaTeX_Size3': ['KaTeX_Size3-Regular.ttf'],
+ 'KaTeX_Size4': ['KaTeX_Size4-Regular.ttf'],
+ 'KaTeX_Typewriter': ['KaTeX_Typewriter-Regular.ttf'],
+ };
+ for (final entry in fonts.entries) {
+ final fontFamily = entry.key;
+ final fontFiles = entry.value;
+
+ final fontLoader = FontLoader(fontFamily);
+ for (final fontFile in fontFiles) {
+ fontLoader.addFont(rootBundle.load('assets/KaTeX/$fontFile'));
+ }
+ await fontLoader.load();
+ }
+}