summaryrefslogtreecommitdiffstats
path: root/tests/test_renderers/fixtures/amsmath.md
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_renderers/fixtures/amsmath.md')
-rw-r--r--tests/test_renderers/fixtures/amsmath.md52
1 files changed, 52 insertions, 0 deletions
diff --git a/tests/test_renderers/fixtures/amsmath.md b/tests/test_renderers/fixtures/amsmath.md
new file mode 100644
index 0000000..fe3713e
--- /dev/null
+++ b/tests/test_renderers/fixtures/amsmath.md
@@ -0,0 +1,52 @@
+Single Line:
+.
+\begin{equation} a \end{equation}
+.
+<document source="<src>/index.md">
+ <target ids="equation-mock-uuid">
+ <math_block classes="amsmath" docname="index" label="mock-uuid" nowrap="True" number="1" xml:space="preserve">
+ \begin{equation} a \end{equation}
+.
+
+Multi Line:
+.
+\begin{equation}
+a
+\end{equation}
+.
+<document source="<src>/index.md">
+ <target ids="equation-mock-uuid">
+ <math_block classes="amsmath" docname="index" label="mock-uuid" nowrap="True" number="1" xml:space="preserve">
+ \begin{equation}
+ a
+ \end{equation}
+.
+
+Multi Line no number:
+.
+\begin{equation*}
+a
+\end{equation*}
+.
+<document source="<src>/index.md">
+ <math_block classes="amsmath" nowrap="True" number="True" xml:space="preserve">
+ \begin{equation*}
+ a
+ \end{equation*}
+.
+
+In list:
+.
+- \begin{equation}
+ a = 1
+ \end{equation}
+.
+<document source="<src>/index.md">
+ <bullet_list bullet="-">
+ <list_item>
+ <target ids="equation-mock-uuid">
+ <math_block classes="amsmath" docname="index" label="mock-uuid" nowrap="True" number="1" xml:space="preserve">
+ \begin{equation}
+ a = 1
+ \end{equation}
+.