.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / normalize-selector / README.md
1 # Normalize-Selector
2
3 Normalize CSS selectors.
4
5 Examples:
6
7 * `#foo>.bar` -> `#foo > .bar`
8 * `     #foo     >       .bar    ` -> `#foo > .bar`
9 * `foo[ a = 'b' ]` -> `foo[a='b']`
10
11 ## Tests
12
13 Run mocha tests on node.js with:
14
15 ```
16 npm test
17 ```
18
19 or:
20
21 ```
22 node ./test/mocha/node-suite.js
23 ```
24
25 ## rawgithub
26
27 View the browser suite directly on
28 [rawgithub](https://rawgithub.com/getify/normalize-selector/master/test/mocha/browser-suite.html)
29
30 ## License
31
32 The code and all the documentation are released under the MIT license.
33
34 http://getify.mit-license.org/