3636}
3737```
3838
39- ## Usage
39+ ## Usage ##
4040
4141``` js
4242import postcssExtractValue from ' postcss-extract-value' ;
@@ -47,41 +47,41 @@ postcss([
4747])
4848```
4949
50- ## Options
50+ ## Options ##
5151
52- ### filterByProps
52+ #### filterByProps ####
5353
5454Type: ` array ` <br >
5555Required: ` false ` <br >
5656Default: ` [] `
5757
5858You can add names of css properties and only from this properties will be extracted values.
5959
60- ### onlyColor
60+ #### onlyColor ####
6161
6262Type: ` boolean ` <br >
6363Required: ` false ` <br >
6464Default: ` false `
6565
6666If you set true, only colors (hex, rgb, hsl, color keywords) will be extracted from values.
6767
68- ### scope
68+ #### scope ####
6969
7070Type: ` string ` <br >
7171Required: ` false ` <br >
7272Default: ` :root `
7373
7474You can set custom selector, which will contain variables.
7575
76- ### variableSyntax
76+ #### variableSyntax ####
7777
7878Type: ` string ` <br >
7979Required: ` false ` <br >
8080Default: ``
8181
8282By default it will be used css variables syntax, other available variants ** less** and ** sass** .
8383
84- ### templateVariableName
84+ #### templateVariableName ####
8585
8686Type: ` string ` <br >
8787Required: ` false ` <br >
@@ -91,11 +91,11 @@ You can set template for variables using special words.
9191See more information below.
9292
9393
94- ## Usage templateVariableName
94+ ## Usage templateVariableName ##
9595
96- ** With options _ filterByProps_ or without any options by default:**
96+ ### With options _ filterByProps_ or without any options by default: ###
9797
98- ### [ propertyName]
98+ #### [ propertyName] ####
9999Name of css property (width, border, etc.).
100100
101101``` js
@@ -120,12 +120,12 @@ postcss([
120120}
121121```
122122
123- ** With options _ onlyColor_ :**
123+ ### With options _ onlyColor_ : ###
124124
125- ### [ colorKeyword]
125+ #### [ colorKeyword] ####
126126Color keyword of the nearest color.
127127
128- ### [ tint]
128+ #### [ tint] ####
129129Deviation in the dark or light side from the nearest color. (light\dark)
130130
131131 ``` js
@@ -156,9 +156,9 @@ Deviation in the dark or light side from the nearest color. (light\dark)
156156}
157157 ```
158158
159- ** Others**
160-
161- ### [ selectorName]
159+ ### Others ###
160+
161+ #### [ selectorName] ####
162162 Name of css selector (className, id, etc.)
163163
164164 ``` js
0 commit comments