We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3640fb0 commit a32a87dCopy full SHA for a32a87d
1 file changed
parser.go
@@ -1,7 +1,6 @@
1
package css
2
3
import (
4
- "fmt"
5
"log"
6
7
"github.com/gorilla/css/scanner"
@@ -128,7 +127,7 @@ func Parse(csstext string) *CSSStyleSheet {
128
127
context.NowRuleType = COUNTER_STYLE_RULE
129
parseRule(context, s, css)
130
default:
131
- log.Println(fmt.Printf("Skip unsupported atrule: %s", token.Value))
+ log.Printf("Skip unsupported atrule: %s", token.Value)
132
skipRules(s)
133
context.resetContextStyleRule()
134
}
0 commit comments