@@ -529,7 +529,7 @@ class ContentExample {
529
529
]),
530
530
]));
531
531
532
- static final mathBlock = ContentExample (
532
+ static const mathBlock = ContentExample (
533
533
'math block' ,
534
534
"```math\n\\ lambda\n ```" ,
535
535
expectedText: r'\lambda' ,
@@ -549,7 +549,7 @@ class ContentExample {
549
549
]),
550
550
])]);
551
551
552
- static final mathBlocksMultipleInParagraph = ContentExample (
552
+ static const mathBlocksMultipleInParagraph = ContentExample (
553
553
'math blocks, multiple in paragraph' ,
554
554
'```math\n a\n\n b\n ```' ,
555
555
// https://chat.zulip.org/#narrow/channel/7-test-here/topic/.E2.9C.94.20Rajesh/near/2001490
@@ -586,7 +586,7 @@ class ContentExample {
586
586
]),
587
587
]);
588
588
589
- static final mathBlockInQuote = ContentExample (
589
+ static const mathBlockInQuote = ContentExample (
590
590
'math block in quote' ,
591
591
// There's sometimes a quirky extra `<br>\n` at the end of the `<p>` that
592
592
// encloses the math block. In particular this happens when the math block
@@ -614,7 +614,7 @@ class ContentExample {
614
614
]),
615
615
])]);
616
616
617
- static final mathBlocksMultipleInQuote = ContentExample (
617
+ static const mathBlocksMultipleInQuote = ContentExample (
618
618
'math blocks, multiple in quote' ,
619
619
"````quote\n ```math\n a\n\n b\n ```\n ````" ,
620
620
// https://chat.zulip.org/#narrow/channel/7-test-here/topic/.E2.9C.94.20Rajesh/near/2029236
@@ -654,7 +654,7 @@ class ContentExample {
654
654
]),
655
655
])]);
656
656
657
- static final mathBlockBetweenImages = ContentExample (
657
+ static const mathBlockBetweenImages = ContentExample (
658
658
'math block between images' ,
659
659
// https://chat.zulip.org/#narrow/channel/7-test-here/topic/Greg/near/2035891
660
660
'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\n a\n ```\n https://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' ,
@@ -702,7 +702,7 @@ class ContentExample {
702
702
// The font sizes can be compared using the katex.css generated
703
703
// from katex.scss :
704
704
// https://unpkg.com/[email protected] /dist/katex.css
705
- static final mathBlockKatexSizing = ContentExample (
705
+ static const mathBlockKatexSizing = ContentExample (
706
706
'math block; KaTeX different sizing' ,
707
707
// https://chat.zulip.org/#narrow/channel/7-test-here/topic/Rajesh/near/2155476
708
708
'```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 ```' ,
@@ -779,7 +779,7 @@ class ContentExample {
779
779
]),
780
780
]);
781
781
782
- static final mathBlockKatexNestedSizing = ContentExample (
782
+ static const mathBlockKatexNestedSizing = ContentExample (
783
783
'math block; KaTeX nested sizing' ,
784
784
'```math\n\\ tiny {1 \\ Huge 2}\n ```' ,
785
785
'<p>'
@@ -821,7 +821,7 @@ class ContentExample {
821
821
]),
822
822
]);
823
823
824
- static final mathBlockKatexDelimSizing = ContentExample (
824
+ static const mathBlockKatexDelimSizing = ContentExample (
825
825
'math block; KaTeX delimiter sizing' ,
826
826
// https://chat.zulip.org/#narrow/channel/7-test-here/topic/Rajesh/near/2147135
827
827
'```math\n ⟨ \\ big( \\ Big[ \\ bigg⌈ \\ Bigg⌊\n ```' ,
0 commit comments