1a911ef6cb15d425adcf4293cde329fa1106b7f3fbf2c64f589095b598680f8cd699580204bfc619ec04ebd077ee6fb11ea929a7cf15ab76c185512de8be64 724 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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