11ty / eleventy-plugin-rss

A pack of Eleventy plugins for generating an RSS feed.
https://www.11ty.dev/docs/plugins/rss/
MIT License
92 stars 22 forks source link

Data URIs break RSS output since htmlToAbsoluteUrls tries to transform them #18

Closed seigler closed 4 years ago

seigler commented 4 years ago

When the site output has a data URI, for example:

<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==" alt="Red dot" />

the function that transforms relative URLs to absolute ones tries to transform the data URI and fails.

seigler commented 4 years ago

Nevermind; there was a different problem. This library does handle data URIs properly!