We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Правильное поведение: 'a{}\tb{}' =>
'a{}\tb{}'
["stylesheet",["ruleset",["selector",["simpleselector",["ident","a"]]],["block"]],["s","\t"],["ruleset",["selector",["simpleselector",["ident","b"]]],["block"]]]
Пробел \t находится за пределами ruleset.
\t
ruleset
Неправильное поведение: '@media all{a{}\tb{}}' =>
'@media all{a{}\tb{}}'
["stylesheet",["atruler",["atkeyword",["ident","media"]],["atrulerq",["s"," "],["ident","all"]],["atrulers",["ruleset",["selector",["simpleselector",["ident","a"]]],["block"]],["ruleset",["selector",["simpleselector",["s","\t"],["ident","b"]]],["block"]]]]]
Пробел \t попал внутрь simpleselector. Туда же попадают и комментарии, если есть.
simpleselector
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Правильное поведение:
'a{}\tb{}'
=>Пробел
\t
находится за пределамиruleset
.Неправильное поведение:
'@media all{a{}\tb{}}'
=>Пробел
\t
попал внутрьsimpleselector
.Туда же попадают и комментарии, если есть.
The text was updated successfully, but these errors were encountered: