summaryrefslogtreecommitdiffstats
path: root/tests/test_renderers/fixtures/dollarmath.md
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_renderers/fixtures/dollarmath.md')
-rw-r--r--tests/test_renderers/fixtures/dollarmath.md75
1 files changed, 75 insertions, 0 deletions
diff --git a/tests/test_renderers/fixtures/dollarmath.md b/tests/test_renderers/fixtures/dollarmath.md
new file mode 100644
index 0000000..e3e5fd2
--- /dev/null
+++ b/tests/test_renderers/fixtures/dollarmath.md
@@ -0,0 +1,75 @@
+Inline Math:
+.
+$foo$
+.
+<document source="<src>/index.md">
+ <paragraph>
+ <math>
+ foo
+.
+
+Inline Math, multi-line:
+.
+a $foo
+bar$ b
+.
+<document source="<src>/index.md">
+ <paragraph>
+ a
+ <math>
+ foo
+ bar
+ b
+.
+
+Inline Math, multi-line with line break (invalid):
+.
+a $foo
+
+bar$ b
+.
+<document source="<src>/index.md">
+ <paragraph>
+ a $foo
+ <paragraph>
+ bar$ b
+.
+
+Math Block:
+.
+$$foo$$
+.
+<document source="<src>/index.md">
+ <math_block nowrap="False" number="True" xml:space="preserve">
+ foo
+.
+
+Math Block With Equation Label:
+.
+$$foo$$ (abc)
+.
+<document source="<src>/index.md">
+ <target ids="equation-abc">
+ <math_block docname="index" label="abc" nowrap="False" number="1" xml:space="preserve">
+ foo
+.
+
+Math Block multiple:
+.
+$$
+a = 1
+$$
+
+$$
+b = 2
+$$ (a)
+.
+<document source="<src>/index.md">
+ <math_block nowrap="False" number="True" xml:space="preserve">
+
+ a = 1
+ <target ids="equation-a">
+ <math_block docname="index" label="a" nowrap="False" number="1" xml:space="preserve">
+
+ b = 2
+.