From 943e3dc057eca53e68ddec51529bd6a1279ebd8e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 29 Apr 2024 06:23:02 +0200 Subject: Adding upstream version 0.18.1. Signed-off-by: Daniel Baumann --- .../fixtures/docutil_syntax_extensions.txt | 139 +++++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 tests/test_renderers/fixtures/docutil_syntax_extensions.txt (limited to 'tests/test_renderers/fixtures/docutil_syntax_extensions.txt') diff --git a/tests/test_renderers/fixtures/docutil_syntax_extensions.txt b/tests/test_renderers/fixtures/docutil_syntax_extensions.txt new file mode 100644 index 0000000..5efcb68 --- /dev/null +++ b/tests/test_renderers/fixtures/docutil_syntax_extensions.txt @@ -0,0 +1,139 @@ +[dollarmath] --myst-enable-extensions=dollarmath +. +$foo$ + +a $foo +bar$ b + +$$foo$$ + +$$ +a = 1 +$$ +. + + + + foo + + a + + foo + bar + b + + foo + + + a = 1 +. + +[amsmath] --myst-enable-extensions=amsmath +. +\begin{equation} a \end{equation} + +\begin{equation} +a +\end{equation} + +\begin{equation*} +a +\end{equation*} +. + + + \begin{equation} a \end{equation} + + \begin{equation} + a + \end{equation} + + \begin{equation*} + a + \end{equation*} +. + +[deflist] --myst-enable-extensions=deflist +. +term +: definition +. + + + + + term + + + definition +. + +[fieldlist] --myst-enable-extensions=fieldlist +. +:name: value +. + + + + + name + + + value +. + +[colon_fence] --myst-enable-extensions=colon_fence +. +:::{note} +content +::: +. + + + + content +. + +[replacements] --myst-enable-extensions=replacements +. +(c) (C) (r) (R) (tm) (TM) (p) (P) +- ... +. + + + © © ® ® ™ ™ § § ± … +. + +[strikethrough] --myst-enable-extensions=strikethrough +. +~~foo~~ +. + + + + + Strikethrough is currently only supported in HTML output [myst.strikethrough] + + + foo + + +. + +[tasklist] --myst-enable-extensions=tasklist +. +- [ ] foo +- [x] bar +. + + + + + + + foo + + + + + bar +. -- cgit v1.2.3