Add title attribute back to img tag

This commit is contained in:
Scott McMillin 2022-09-04 18:52:09 -05:00
parent 5397c89184
commit d7bc8c12e0

View File

@ -13,7 +13,7 @@ function appendOutput(src, seed, config) {
const figureContents = `
<a href="${src}" target="_blank">
<img src="${src}" alt="${altText}">
<img src="${src}" alt="${altText}" title="${altText}">
</a>
<figcaption>${seed}</figcaption>
`;