When the data-uri attribute is set and the alt text is not specified for images, renderImageAlt (pkg/renderer/sgml/image.go) gives an alt text of "." from the src URL. For example:
= data-uri without alt
:data-uri:
image::test/images/favicon-glasses-16x16.png[]
Yields a document with the img tag: <img src="data:image/jpg;base64,/9j..." alt=".">
When the data-uri attribute is set and the alt text is not specified for images,
renderImageAlt
(pkg/renderer/sgml/image.go) gives an alt text of "." from the src URL. For example:Yields a document with the img tag:
<img src="data:image/jpg;base64,/9j..." alt=".">