You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ashley Flanagan b625ccd8d6 feat: docker compose maybe 10 months ago
..
lib feat: docker compose maybe 10 months ago
LICENSE feat: docker compose maybe 10 months ago
README.md feat: docker compose maybe 10 months ago
package.json feat: docker compose maybe 10 months ago

README.md

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 {}'
})