From a03d67daa39d9517ece8fafb245357cc3ae3e514 Mon Sep 17 00:00:00 2001 From: Valtteri Laitinen Date: Tue, 30 Nov 2021 22:08:03 +0200 Subject: [PATCH] Fix readme * Add the missing opening brace * Add the missing language hint to a code fence for syntax highlighting * Fix the heading level of _License_ * Trim trailing whitespace --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3bd6a0d..72aa91d 100644 --- a/README.md +++ b/README.md @@ -179,14 +179,14 @@ whether the first character in the argument is a quotation mark. ```js { type: 'function', sourceIndex: 0, value: 'url', before: ' ', after: ' ', nodes: [ - type: 'string', sourceIndex: 5, quote: '"', value: '/gfx/img/bg.jpg' }, + { type: 'string', sourceIndex: 5, quote: '"', value: '/gfx/img/bg.jpg' }, ] } ``` ### unicode-range -The unicode-range CSS descriptor sets the specific range of characters to be -used from a font defined by @font-face and made available +The unicode-range CSS descriptor sets the specific range of characters to be +used from a font defined by @font-face and made available for use on the current page (`unicode-range: U+0025-00FF`). Node-specific properties: @@ -195,7 +195,7 @@ Node-specific properties: ## API -``` +```js var valueParser = require('postcss-value-parser'); ``` @@ -258,6 +258,6 @@ Stringifies the node tree. Walks each node inside `parsed.nodes`. See the documentation for `valueParser.walk()` above. -# License +## License MIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)