a58304e00e
depending on file extension of the image path
12 lines
292 B
Markdown
12 lines
292 B
Markdown
```
|
|
% pandoc -fmarkdown-implicit_figures
|
|
![image](lalune.jpg){height=2em}
|
|
^D
|
|
<p><img src="lalune.jpg" style="height:2em" alt="image" /></p>
|
|
```
|
|
```
|
|
% pandoc -fmarkdown-implicit_figures -t latex
|
|
![image](lalune.jpg){height=2em}
|
|
^D
|
|
\includegraphics[width=\textwidth,height=2em]{lalune.jpg}
|
|
```
|