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
> **Note:** This project is in early development, and versioning is a little different. [Read this](http://markup.im/#q4_cRZ1Q) for more details.
11
11
12
-
### Why should you care?
13
-
14
-
Write about why this project is important.
15
12
16
13
### Installation
17
14
@@ -21,7 +18,40 @@ Write about why this project is important.
21
18
22
19
### Usage
23
20
24
-
How to use this project.
21
+
This is nothing more than a light wrapper around a postcss configuration object. Options are filtered into their appropriate plugins internally. All are optional.
22
+
23
+
```js
24
+
constreshape=require('postcss')
25
+
consthtmlStandards=require('spike-css-standards')
26
+
27
+
postcss(cssStandards(/* options */))
28
+
.process(someCss)
29
+
.then((res) => { console.log(res.content) })
30
+
```
31
+
32
+
By default, the css standard plugin pack includes:
33
+
34
+
-[sugarss](https://github.com/postcss/sugarss), provided as default parser
0 commit comments