You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For syntax highlighting purposes in a diff I want to know what sort of thing we're rendering in each line. So apart from returning the CSS as a string I also want an array if types:
This is sufficient for highlighting purposes because the formatting rules dictate that every atrule or selector prelude line end with a { and every declaration ends with a ;.
We don't need to support this for minified CSS because that's just madness.
The text was updated successfully, but these errors were encountered:
For syntax highlighting purposes in a diff I want to know what sort of thing we're rendering in each line. So apart from returning the CSS as a string I also want an array if types:
The following types are needed:
a
)color: red;
){
,}
)@media all
)This is sufficient for highlighting purposes because the formatting rules dictate that every atrule or selector prelude line end with a
{
and every declaration ends with a;
.We don't need to support this for minified CSS because that's just madness.
The text was updated successfully, but these errors were encountered: