A fault-tolerant CSS parser for PostCSSarrow-up-right, which will find & fix syntax errors, capable of parsing any input. It is useful for:
Parse legacy code with many hacks. For example, it can parse all examples from Browserhacksarrow-up-right.
Works with demo tools with live input like Autoprefixer demoarrow-up-right.
arrow-up-right
Last updated 3 years ago
var safe = require('postcss-safe-parser'); var badCss = 'a {'; postcss(plugins).process(badCss, { parser: safe }).then(function (result) { result.css //= 'a {}' });