forked from w3c/webref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css-counter-styles.json
103 lines (103 loc) · 2.4 KB
/
css-counter-styles.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"spec": {
"title": "CSS Counter Styles Level 3",
"url": "https://www.w3.org/TR/css-counter-styles-3/"
},
"properties": {},
"descriptors": {
"system": [
{
"name": "system",
"for": "@counter-style",
"value": "cyclic | numeric | alphabetic | symbolic | additive | [fixed <integer>?] | [ extends <counter-style-name> ]",
"initial": "symbolic"
}
],
"negative": [
{
"name": "negative",
"for": "@counter-style",
"value": "<symbol> <symbol>?",
"initial": "\"\\2D\" (\"-\" hyphen-minus)"
}
],
"prefix": [
{
"name": "prefix",
"for": "@counter-style",
"value": "<symbol>",
"initial": "\"\" (the empty string)"
}
],
"suffix": [
{
"name": "suffix",
"for": "@counter-style",
"value": "<symbol>",
"initial": "\"\\2E\\20\" (\".\" full stop followed by a space)"
}
],
"range": [
{
"name": "range",
"for": "@counter-style",
"value": "[ [ <integer> | infinite ]{2} ]# | auto",
"initial": "auto"
}
],
"pad": [
{
"name": "pad",
"for": "@counter-style",
"value": "<integer [0,∞]> && <symbol>",
"initial": "0 \"\""
}
],
"fallback": [
{
"name": "fallback",
"for": "@counter-style",
"value": "<counter-style-name>",
"initial": "decimal"
}
],
"symbols": [
{
"name": "symbols",
"for": "@counter-style",
"value": "<symbol>+",
"initial": "n/a"
}
],
"additive-symbols": [
{
"name": "additive-symbols",
"for": "@counter-style",
"value": "[ <integer [0,∞]> && <symbol> ]#",
"initial": "n/a"
}
],
"speak-as": [
{
"name": "speak-as",
"for": "@counter-style",
"value": "auto | bullets | numbers | words | spell-out | <counter-style-name>",
"initial": "auto"
}
]
},
"valuespaces": {
"<symbol>": {
"value": "<string> | <image> | <custom-ident>"
},
"<symbols()>": {
"value": "symbols( <symbols-type>? [ <string> | <image> ]+ )"
},
"<symbols-type>": {
"value": "cyclic | numeric | alphabetic | symbolic | fixed"
},
"<counter-style>": {
"value": "<counter-style-name> | <symbols()>"
}
}
}