Problem with LESS Parser when using Unicode Characters
Permalink
I am getting an error message when using unicode chars in my less files that are compiled by Concrete5:
http://laravel.io/bin/ro64v
Not sure what could cause this since it works in pure CSS, SASS and LESS when I compile it myself. Any ideas?
http://laravel.io/bin/ro64v
Not sure what could cause this since it works in pure CSS, SASS and LESS when I compile it myself. Any ideas?
Just a wild guess, but could it have something to do with the fact that in the parser strlen() is used to calculate input length and it can give weird results with multibyte characters?
Makes sense, considering the comments in the php documentation:
http://php.net/strlen
I went with escaping the characters which seemed to be the easiest solution.
http://php.net/strlen
I went with escaping the characters which seemed to be the easiest solution.