40e46e714dae6610fd8e0ad5e27aa073ca222e280d4fb534eb8ebd2feb01859c7661eab7c0628b2e7f19a1600c6dfb883bdc4c509ff3e7ee9012e385cb15d9 705 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # postcss-normalize-charset
  2. Add necessary or remove extra charset with PostCSS
  3. ```css
  4. a{
  5. content: "©";
  6. }
  7. ```
  8. ```css
  9. @charset "utf-8";
  10. a{
  11. content: "©";
  12. }
  13. ```
  14. ## API
  15. ### normalizeCharset([options])
  16. #### options
  17. ##### add
  18. Type: `boolean`
  19. Default: `true`
  20. Pass `false` to stop the module from adding a `@charset` declaration if it was
  21. missing from the file (and the file contained non-ascii characters).
  22. ## Usage
  23. See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
  24. examples for your environment.
  25. ## Contributors
  26. See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
  27. ## License
  28. MIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)