source: trip-planner-front/node_modules/postcss-normalize-charset/README.md@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 705 bytes
Line 
1# postcss-normalize-charset
2
3Add necessary or remove extra charset with PostCSS
4
5```css
6a{
7 content: "©";
8}
9```
10
11```css
12@charset "utf-8";
13a{
14 content: "©";
15}
16```
17
18## API
19
20### normalizeCharset([options])
21
22#### options
23
24##### add
25
26Type: `boolean`
27Default: `true`
28
29Pass `false` to stop the module from adding a `@charset` declaration if it was
30missing from the file (and the file contained non-ascii characters).
31
32## Usage
33
34See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
35examples for your environment.
36
37## Contributors
38
39See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
40
41## License
42
43MIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)
Note: See TracBrowser for help on using the repository browser.