summaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
Diffstat (limited to 'test/command')
-rw-r--r--test/command/alerts.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/command/alerts.md b/test/command/alerts.md
index fe70e6e4e..b11b60460 100644
--- a/test/command/alerts.md
+++ b/test/command/alerts.md
@@ -27,3 +27,29 @@
A tip.
====
```
+
+```
+% pandoc -f gfm -t docbook
+> [!TIP]
+> A tip.
+^D
+<tip>
+ <title>Tip</title>
+ <para>
+ A tip.
+ </para>
+</tip>
+```
+
+```
+% pandoc -f docbook -t gfm
+<tip>
+ <title>Tip</title>
+ <para>
+ A tip.
+ </para>
+</tip>
+^D
+> [!TIP]
+> A tip.
+```