mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 21:25:48 +00:00
when height and width are added to style because of an image, but the image already has a style attribute. Closes #8047.
7 lines
187 B
Markdown
7 lines
187 B
Markdown
```
|
|
% pandoc --wrap=none
|
|
{height=10em width=10em style='border: 1px solid black'}
|
|
^D
|
|
<p><img src="file.jpg" style="border: 1px solid black;width:10em;height:10em" /></p>
|
|
```
|