summaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
Diffstat (limited to 'test/command')
-rw-r--r--test/command/alerts.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/command/alerts.md b/test/command/alerts.md
new file mode 100644
index 000000000..fe70e6e4e
--- /dev/null
+++ b/test/command/alerts.md
@@ -0,0 +1,29 @@
+```
+% pandoc -f rst -t gfm
+.. note::
+ This is my note.
+^D
+> [!NOTE]
+> This is my note.
+```
+
+```
+% pandoc -f gfm -t rst
+> [!WARNING]
+> Be careful!
+^D
+.. warning::
+
+ Be careful!
+```
+
+```
+% pandoc -f gfm -t asciidoc
+> [!TIP]
+> A tip.
+^D
+[TIP]
+====
+A tip.
+====
+```