f9f68f3e6c9ddcef9eac24d4fff90bfeb111b14dad4f227624af724ee2f8555a7cd9cbda6c4d4c1f8f0c518ad0a91a647e587a92665fb4e939d710246220de 710 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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