Ben Griffith

Results 4 issues of Ben Griffith

The code below is valid in Sass, but not CSS. No surprises, this will give a parser error 😑 ```scss div,, , span, ,, { color: red; } ``` https://github.com/sass/sass-spec/blob/master/spec/basic/36_extra_commas_in_selectors/input.scss

type: bug
syntax: sass
syntax: scss

Using double quotes with an interp within an attribute selector causes a parse error. The following code causes an error: ```scss [attr="foo #{"bar"}"] { p:v } ``` While the following...

type: bug
syntax: sass
syntax: scss

Currently empty declarations cause a parse error. Works fine in `SCSS` e.g. `.foo {}`. `universalSelector`, `typeSelector`, `class`, `shash`, `parentSelector`, `attributeSelector` Test cases - each one causes a parse error. ```sass...

type: bug
syntax: sass

First off I'm really enjoying using ioctocat! Now, one thing that I would love to see improve is the formatting of markdown code blocks, especially with possibly the option of...

enhancement