aboutsummaryrefslogtreecommitdiff
path: root/test/command/4677.md
AgeCommit message (Collapse)AuthorFilesLines
2020-07-01HTML writer: improve alt-text/caption handling for HTML5Albert Krewinkel1-1/+1
Screen readers read an image's `alt` attribute and the figure caption, both of which come from the same source in pandoc. The figure caption is hidden from screen readers with the `aria-hidden` attribute. This improves accessibility. For HTML4, where `aria-hidden` is not allowed, pandoc still uses an empty `alt` attribute to avoid duplicate contents. Closes: #6491
2019-05-29HTML writer: output video and audio elementsmb211-1/+1
depending on file extension of the image path
2019-05-28HTML writer: emit empty alt tag in figures (#5518)Mauro Bieg1-1/+1
The same text is already in the <figcaption> and screen-readers would read it twice, see #4737
2018-06-11Adjust command test not to use echo.John MacFarlane1-1/+2
This is fraught on Windows.
2018-05-30Markdown writer: preserve `implicit_figures` with attributes...John MacFarlane1-0/+7
...even if `implicit_attributes` is not set, by rendering in raw HTML. Fixes #4677.