c1105e6b06
when height and width are added to style because of an image, but the image already has a style attribute. Closes #8047.
6 lines
187 B
Markdown
6 lines
187 B
Markdown
```
|
|
% pandoc --wrap=none
|
|
![](file.jpg){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>
|
|
```
|