lhl 6ff0e96ad3 8-4-1 | 1 ano atrás | |
---|---|---|
.. | ||
lib | 1 ano atrás | |
CHANGELOG.md | 1 ano atrás | |
LICENSE | 1 ano atrás | |
README.md | 1 ano atrás | |
package.json | 1 ano atrás |
<img align="right" width="95" height="95"
title="Philosopher’s stone, logo of PostCSS"
src="http://postcss.github.io/postcss/logo.svg">
A fault-tolerant CSS parser for PostCSS, which will find & fix syntax errors, capable of parsing any input. It is useful for:
var safe = require('postcss-safe-parser');
var badCss = 'a {';
postcss(plugins).process(badCss, { parser: safe }).then(function (result) {
result.css //= 'a {}'
});