|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
724 bytes
|
| Line | |
|---|
| 1 | # [postcss][postcss]-normalize-unicode
|
|---|
| 2 |
|
|---|
| 3 | > Normalize unicode with PostCSS.
|
|---|
| 4 |
|
|---|
| 5 | ## Install
|
|---|
| 6 |
|
|---|
| 7 | With [npm](https://npmjs.org/package/postcss-normalize-unicode) do:
|
|---|
| 8 |
|
|---|
| 9 | ```
|
|---|
| 10 | npm install postcss-normalize-unicode --save
|
|---|
| 11 | ```
|
|---|
| 12 |
|
|---|
| 13 | ## Example
|
|---|
| 14 |
|
|---|
| 15 | ### Input
|
|---|
| 16 |
|
|---|
| 17 | ```css
|
|---|
| 18 | @font-face{
|
|---|
| 19 | font-family: test;
|
|---|
| 20 | unicode-range: u+2b00-2bff
|
|---|
| 21 | }
|
|---|
| 22 | ```
|
|---|
| 23 |
|
|---|
| 24 | ### Output
|
|---|
| 25 |
|
|---|
| 26 | ```css
|
|---|
| 27 | @font-face{
|
|---|
| 28 | font-family: test;
|
|---|
| 29 | unicode-range: u+2b??
|
|---|
| 30 | }
|
|---|
| 31 | ```
|
|---|
| 32 |
|
|---|
| 33 | ## Usage
|
|---|
| 34 |
|
|---|
| 35 | See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
|
|---|
| 36 | examples for your environment.
|
|---|
| 37 |
|
|---|
| 38 | ## Contributors
|
|---|
| 39 |
|
|---|
| 40 | See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
|
|---|
| 41 |
|
|---|
| 42 | ## License
|
|---|
| 43 |
|
|---|
| 44 | MIT © [Ben Briggs](http://beneb.info)
|
|---|
| 45 |
|
|---|
| 46 | [postcss]: https://github.com/postcss/postcss
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.