summaryrefslogtreecommitdiff
path: root/test/command/3450.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/3450.md')
-rw-r--r--test/command/3450.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/command/3450.md b/test/command/3450.md
new file mode 100644
index 000000000..5b35e1d9e
--- /dev/null
+++ b/test/command/3450.md
@@ -0,0 +1,12 @@
+```
+% pandoc -fmarkdown-implicit_figures
+![image](lalune.jpg){height=2em}
+^D
+<p><img src="lalune.jpg" alt="image" style="height:2em" /></p>
+```
+```
+% pandoc -fmarkdown-implicit_figures -t latex
+![image](lalune.jpg){height=2em}
+^D
+\includegraphics[width=\textwidth,height=2em]{lalune.jpg}
+```