less / less.js

Less. The dynamic stylesheet language.
http://lesscss.org
Apache License 2.0
17.02k stars 3.41k forks source link

data-uri svg output #3610

Open gregBerthelot opened 3 years ago

gregBerthelot commented 3 years ago

Hi

According to http://lesscss.org/functions/ data-uri('image/svg+xml;charset=UTF-8', 'image.svg');should output url("data:image/svg+xml;charset=UTF-8,%3Csvg%3E%3Ccircle%20r%3D%229%22%2F%3E%3C%2Fsvg%3E");

Tested here https://codepen.io/ZeGregg/pen/RwoOqLG?editors=1100 and compiled css output background-image: url("https://getuikit.com/assets/uikit/src/images/icons/cloud-download.svg");

Any help would be appreciated Greg

iChenLei commented 3 years ago

You can dig the source code.

https://github.com/less/less.js/blob/master/packages/less/src/less/functions/data-uri.js#L6-L74