You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
875 B
875 B
Translate AST to string
generate(ast[, options])
Generates a CSS string for given AST.
// generate with default settings
csstree.generate(ast);
// generate with options
csstree.generate(ast, {
sourceMap: true
});
Options (optional):
sourceMap
Type: boolean
Default: false
Generates a source map (nodes should contain positions in loc
property). Note, that an object instead of string is returned in that case.
var ast = csstree.parse('.test { color: red }', {
filename: 'my.css',
positions: true
});
var result = csstree.generate(ast, { sourceMap: true });
// { css: '.test{color:red}', map: SourceMapGenerator {} }
decorator
Type: function
Default: none
A function that a handlers used by a generator. TBD