We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b069217 commit 611c1c9Copy full SHA for 611c1c9
Readme.md
@@ -13,20 +13,20 @@
13
14
var str = stringify(ast);
15
16
-To get compressed output:
+To get compressed output pass `compress` option:
17
18
var compressed = stringify(ast, {compress: true});
19
20
-To get a source map:
+To get a source map pass `sourcemap` option:
21
22
var ast = parse('body { font-size: 12px; }', {position: true});
23
var result = stringify(ast, {sourcemap: true});
24
25
result.code // string with CSS
26
result.map // source map
27
28
-Note that the AST should contain position information (`position` option set to
29
-`true`).
+Note that the AST should contain position information (`position` option of
+`css-parse` set to `true`).
30
31
## Performance
32
0 commit comments