sindresorhus / grunt-sass

Compile Sass to CSS
MIT License
1.01k stars 209 forks source link

Double \ instead of single #250

Closed ghost closed 9 years ago

ghost commented 9 years ago

This snippet is coming from Bootstrap from _breadcrumb.scss

$breadcrumb-separator: "/" !default;
.breadcrumb {
  > li {
    + li:before {
      content: "#{$breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
    }
  }
}

is compiled to:

.breadcrumb > li + li:before {
  content: "/\\00a0"; 
}

There is double \\ and should be single \

arthurvr commented 9 years ago

Read the readme, please.

Issues with the output should be reported on the libsass issue tracker.