textile / python-textile

A Python port of Textile, A humane web text generator
Other
69 stars 23 forks source link

Added support for data URI #19

Closed MHendricks closed 8 years ago

MHendricks commented 9 years ago

A image link using the data URI scheme does not convert properly currently.

>>> image = r'!data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==!'
>>> textile.Textile().image(image)
<img alt="" src="#" />

The merge request adds 'data' to the unrestricted_url_schemes variable.

>>> image = r'!data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==!'
>>> textile.Textile().image(image)
<img alt="" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==" />
ikirudennis commented 8 years ago

I really hate git sometimes. I tried merging this in, but somehow it only merged the difference in version numbers. I'll be merging your actual code in momentarily.