Urara-Blog/node_modules/.pnpm-store/v3/files/82/40e46e714dae6610fd8e0ad5e27aa073ca222e280d4fb534eb8ebd2feb01859c7661eab7c0628b2e7f19a1600c6dfb883bdc4c509ff3e7ee9012e385cb15d9
2022-08-14 01:14:53 +08:00

43 lines
705 B
Text

# postcss-normalize-charset
Add necessary or remove extra charset with PostCSS
```css
a{
content: "©";
}
```
```css
@charset "utf-8";
a{
content: "©";
}
```
## API
### normalizeCharset([options])
#### options
##### add
Type: `boolean`
Default: `true`
Pass `false` to stop the module from adding a `@charset` declaration if it was
missing from the file (and the file contained non-ascii characters).
## Usage
See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
examples for your environment.
## Contributors
See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
## License
MIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)