rstacruz / sinatra-assetpack

Package your assets transparently in Sinatra.
http://ricostacruz.com/sinatra-assetpack/
MIT License
542 stars 97 forks source link

Data URIs with surrounding quotes are being preprocessed #112

Closed bentruyman closed 11 years ago

bentruyman commented 11 years ago

The fix in #96 handled cases with data URIs without quotes:

url(data:application/x-font-woff)

But fails when the data URI is wrapped with quotes:

url("data:application/x-font-woff")

I'm looking into a simple fix in the regular expression to handle this case.