-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Closed
Description
Under the environment:
sassc: 3.2.1
libsass: 3.2.4
sass2scss: 1.0.3
the SCSS in question:
content: "#{$breadcrumb-separator}\00a0";is getting compiled to:
content: "/\\00a0";which is incorrect.
By comparison, Ruby Sass compiles this code to:
content: "/ ";which is correct (albeit not ASCII).
This is due to a bug in libsass: sass/libsass#1115
The questions are (a) should bootstrap-sass try to workaround this? (b) if yes, how? (c) if yes, since this only affects libsass, do we make the change in bootstrap-sass, or in upstream Bootstrap?
CC: @twbs/sass