aboutsummaryrefslogtreecommitdiff
path: root/test/command/3450.md
blob: a8f713ed0e94b5ff97d322c8705d0db8a31b8402 (plain)
1
2
3
4
5
6
7
8
9
10
11
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[height=2em,keepaspectratio]{lalune.jpg}
```