aboutsummaryrefslogtreecommitdiff
path: root/test/command/11253.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/11253.md')
-rw-r--r--test/command/11253.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/command/11253.md b/test/command/11253.md
new file mode 100644
index 000000000..cc10d8bc0
--- /dev/null
+++ b/test/command/11253.md
@@ -0,0 +1,27 @@
+```
+% pandoc -f markdown -t native
+\ifstrequal{hello}{hello}{TRUE}{FALSE}
+\ifstrequal{hello}{world}{TRUE}{FALSE}
+^D
+[ Para
+ [ RawInline (Format "tex") "TRUE"
+ , SoftBreak
+ , RawInline (Format "tex") "FALSE"
+ ]
+]
+```
+
+```
+% pandoc -f markdown-latex_macros -t native
+\ifstrequal{hello}{hello}{TRUE}{FALSE}
+\ifstrequal{hello}{world}{TRUE}{FALSE}
+^D
+[ Para
+ [ RawInline
+ (Format "tex") "\\ifstrequal{hello}{hello}{TRUE}{FALSE}"
+ , SoftBreak
+ , RawInline
+ (Format "tex") "\\ifstrequal{hello}{world}{TRUE}{FALSE}"
+ ]
+]
+```