cb7b0a6985
- Export `inEm` from ImageSize [API change]. - Change `showFl` and `show` instance for `Dimension` so extra decimal places are omitted. - Added `Em` as a constructor of `Dimension` [API change]. - Allow `em`, `cm`, `in` to pass through without conversion in HTML, LaTeX. Closes #3450.
12 lines
275 B
Markdown
12 lines
275 B
Markdown
```
|
|
% 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]{lalune.jpg}
|
|
```
|