Gazebo_simulation-Frontend/node_modules/postcss-safe-parser/README.md

34 lines
1.2 KiB
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# PostCSS Safe Parser [![Build Status][ci-img]][ci]
<img align="right" width="95" height="95"
title="Philosophers 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:
* 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].
[Autoprefixer demo]: http://simevidas.jsbin.com/gufoko/quiet
[Browserhacks]: http://browserhacks.com/
[PostCSS]: https://github.com/postcss/postcss
[ci-img]: https://img.shields.io/travis/postcss/postcss-safe-parser.svg
[ci]: https://travis-ci.org/postcss/postcss-safe-parser
<a href="https://evilmartians.com/?utm_source=postcss">
<img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg" alt="Sponsored by Evil Martians" width="236" height="54">
</a>
## Usage
```js
var safe = require('postcss-safe-parser');
var badCss = 'a {';
postcss(plugins).process(badCss, { parser: safe }).then(function (result) {
result.css //= 'a {}'
});
```