csscomb.js
csscomb.js copied to clipboard
Converting quotes breaks escape sequences on "content" property
Using Sublime Text plugin, but I assume it's a lib parsing issue.
.foo {
content: "\\";
}
Is comb'ed to:
.foo {
content: '\';
}
It should keep the double backslash instead. On the other hand, combing content: "\#";
works just fine.
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
It breaks the quotes
attribute, too:
Source:
.foo {
quotes: " ";
}
Becomes:
.foo {
quotes: '' '';
}
@joaocunha, do you still have trouble with this issue?
@tonyganch I'm not working on the same project anymore. Back then I fixed it manually.
It's pretty easy to test, tho.
@tonyganch first issue is still there ("\\"
). The second one seems to be fixed (" "
).