catppuccin_obsidian/node_modules/postcss-safe-parser
2022-10-06 16:43:46 -06:00
..
lib add stylelint 2022-10-06 16:43:46 -06:00
LICENSE add stylelint 2022-10-06 16:43:46 -06:00
package.json add stylelint 2022-10-06 16:43:46 -06:00
README.md add stylelint 2022-10-06 16:43:46 -06:00

PostCSS Safe Parser

A fault-tolerant CSS parser for PostCSS, 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 Browserhacks.
  • Works with demo tools with live input like Autoprefixer demo.
Sponsored by Evil Martians

Usage

const safe = require('postcss-safe-parser')

const badCss = 'a {'

postcss(plugins).process(badCss, { parser: safe }).then(result => {
  result.css //= 'a {}'
})