mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-26 10:16:32 +00:00
Remove duplicated alt text in HTML output.
This commit is contained in:
committed by
John MacFarlane
parent
382be73d77
commit
f4ef652a41
@@ -0,0 +1,19 @@
|
||||
```
|
||||
% pandoc -f markdown -t html
|
||||
{alt="alt"}
|
||||
|
||||
^D
|
||||
<figure>
|
||||
<img src="../media/rId25.jpg" title="title" alt="alt" /><figcaption aria-hidden="true">caption</figcaption>
|
||||
</figure>
|
||||
```
|
||||
|
||||
```
|
||||
% pandoc -f markdown -t html
|
||||

|
||||
|
||||
^D
|
||||
<figure>
|
||||
<img src="../media/rId25.jpg" title="title" alt="caption" /><figcaption aria-hidden="true">caption</figcaption>
|
||||
</figure>
|
||||
```
|
||||
Reference in New Issue
Block a user