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.

44 lines
710 B

4 years ago
  1. # [postcss][postcss]-normalize-whitespace
  2. > Normalize whitespace with PostCSS.
  3. ## Install
  4. With [npm](https://npmjs.org/package/postcss-normalize-whitespace) do:
  5. ```
  6. npm install postcss-normalize-whitespace --save
  7. ```
  8. ## Example
  9. ### Input
  10. ```css
  11. h1{
  12. width: calc(10px - ( 100px / var(--test) ))
  13. }
  14. ```
  15. ### Output
  16. ```css
  17. h1{
  18. width: calc(10px - 100px / var(--test))
  19. }
  20. ```
  21. ## Usage
  22. See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
  23. examples for your environment.
  24. ## Contributors
  25. See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
  26. ## License
  27. MIT © [Ben Briggs](http://beneb.info)
  28. [postcss]: https://github.com/postcss/postcss