Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 539B

12345678910111213141516171819202122232425262728293031323334
  1. # Normalize-Selector
  2. Normalize CSS selectors.
  3. Examples:
  4. * `#foo>.bar` -> `#foo > .bar`
  5. * ` #foo > .bar ` -> `#foo > .bar`
  6. * `foo[ a = 'b' ]` -> `foo[a='b']`
  7. ## Tests
  8. Run mocha tests on node.js with:
  9. ```
  10. npm test
  11. ```
  12. or:
  13. ```
  14. node ./test/mocha/node-suite.js
  15. ```
  16. ## rawgithub
  17. View the browser suite directly on
  18. [rawgithub](https://rawgithub.com/getify/normalize-selector/master/test/mocha/browser-suite.html)
  19. ## License
  20. The code and all the documentation are released under the MIT license.
  21. http://getify.mit-license.org/