We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1340ce3 commit 7714eafCopy full SHA for 7714eaf
css-parser-api/readme.md
@@ -0,0 +1,18 @@
1
+CSS Parser Explainer
2
+==============================
3
+
4
+The CSS Parser API goal is to solve common use cases
5
+that web developers encounter where they want to parse
6
+a string that follows the syntax and grammar of CSS and
7
+utilize the browser's built in parser to return an object.
8
9
+Current Use Cases
10
+------------------
11
+* Be able to pass the following in to the parser and get
12
+a representative object in return
13
+ * property and value
14
+ * css rule
15
+ * full stylesheet
16
+* Be able to turn off/on error handling which will enable
17
+the capability to use the parser for custom language needs
18
+or CSS polyfilling.
0 commit comments