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.

46 lines
724 B

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