@@ -43,9 +43,6 @@ The following options and their values are required to be available on the funct
43
43
- ` exceptZero `
44
44
- ` negative `
45
45
- ` never `
46
- - ` style `
47
- - ` decimal ` (default)
48
- - ` percent ` (see [ Percent Style] ( #percent-style ) below)
49
46
- ` useGrouping `
50
47
- ` auto ` (default)
51
48
- ` always `
@@ -97,21 +94,6 @@ with _options_ on the _expression_ taking priority over any option values of the
97
94
> would be formatted with the resolved options
98
95
> `{ notation: 'scientific', minimumFractionDigits: '1' }`.
99
96
100
- ##### Percent Style
101
-
102
- When implementing `style=percent`, the numeric value of the _operand_
103
- MUST be multiplied by 100 for the purposes of formatting.
104
-
105
- > For example,
106
- >
107
- > ```
108
- > The total was {0.5 :number style=percent}.
109
- > ```
110
- >
111
- > should format in a manner similar to:
112
- >
113
- > > The total was 50%.
114
-
115
97
#### Resolved Value
116
98
117
99
The _resolved value_ of an _expression_ with a `:number` _function_
@@ -160,9 +142,6 @@ function `:integer`:
160
142
- `exceptZero`
161
143
- `negative`
162
144
- `never`
163
- - `style`
164
- - `decimal` (default)
165
- - `percent` (see [Percent Style](#percent-style) below)
166
145
- `useGrouping`
167
146
- `auto` (default)
168
147
- `always`
@@ -186,21 +165,6 @@ Option values with the following names are however discarded if included in the
186
165
- `maximumFractionDigits`
187
166
- `minimumSignificantDigits`
188
167
189
- ##### Percent Style
190
-
191
- When implementing `style=percent`, the numeric value of the _operand_
192
- MUST be multiplied by 100 for the purposes of formatting.
193
-
194
- > For example,
195
- >
196
- > ```
197
- > The total was {0.5 :number style=percent}.
198
- > ```
199
- >
200
- > should format in a manner similar to:
201
- >
202
- > > The total was 50%.
203
-
204
168
#### Resolved Value
205
169
206
170
The _resolved value_ of an _expression_ with an `:integer` _function_
@@ -817,7 +781,6 @@ representing its decimal value:
817
781
- `minimumSignificantDigits`
818
782
- `maximumSignificantDigits`
819
783
- `notation`
820
- - `style`
821
784
822
785
```abnf
823
786
integer = "0" / ["-"] ("1"-"9") *DIGIT
0 commit comments