We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 190f9bc commit 4b30cdbCopy full SHA for 4b30cdb
src/parser.js
@@ -813,13 +813,6 @@ export default class Parser {
813
this.position ++;
814
let current = this.content();
815
word += current;
816
- if (current.lastIndexOf('\\') === current.length - 1) {
817
- let next = this.nextToken;
818
- if (next && next[TOKEN.TYPE] === tokens.space) {
819
- word += this.requiredSpace(this.content(next));
820
- this.position ++;
821
- }
822
823
nextToken = this.nextToken;
824
}
825
const hasClass = indexesOf(word, '.').filter(i => word[i - 1] !== '\\');
0 commit comments