@@ -26,17 +26,6 @@ The following options and their values are REQUIRED to be available on the funct
2626 - ` plural ` (default)
2727 - ` ordinal `
2828 - ` exact `
29- - ` compactDisplay ` (this option only has meaning when combined with the option ` notation=compact ` )
30- - ` short ` (default)
31- - ` long `
32- - ` notation `
33- - ` standard ` (default)
34- - ` scientific `
35- - ` engineering `
36- - ` compact `
37- - ` numberingSystem `
38- - valid [ Unicode Number System Identifier] ( https://unicode.org/reports/tr35/tr35.html#UnicodeNumberSystemIdentifier )
39- (default is locale-specific)
4029- ` signDisplay `
4130 - ` auto ` (default)
4231 - ` always `
@@ -87,12 +76,12 @@ with _options_ on the _expression_ taking priority over any option values of the
8776> For example, the _ placeholder_ in this _ message_ :
8877>
8978> ```
90- > .input {$n :number notation=scientific minimumFractionDigits=2}
79+ > .input {$n :number minimumFractionDigits=2 signDisplay=always }
9180> {{{$n :number minimumFractionDigits=1}}}
9281> ```
9382>
9483> would be formatted with the resolved options
95- > `{ notation : 'scientific ', minimumFractionDigits : '1 ' }`.
84+ > `{ minimumFractionDigits : '1 ', signDisplay : 'always ' }`.
9685
9786#### Resolved Value
9887
@@ -132,9 +121,6 @@ The following options and their values are REQUIRED to be available on the funct
132121 - `plural` (default)
133122 - `ordinal`
134123 - `exact`
135- - `numberingSystem`
136- - valid [Unicode Number System Identifier](https://unicode.org/reports/tr35/tr35.html#UnicodeNumberSystemIdentifier)
137- (default is locale-specific)
138124- `signDisplay`
139125 - `auto` (default)
140126 - `always`
@@ -158,8 +144,6 @@ In general, these are included in the resolved option values of the _expression_
158144with _options_ on the _expression_ taking priority over any option values of the _operand_.
159145Option values with the following names are however discarded if included in the _operand_:
160146
161- - `compactDisplay`
162- - `notation`
163147- `minimumFractionDigits`
164148- `maximumFractionDigits`
165149- `minimumSignificantDigits`
@@ -355,15 +339,6 @@ The following options and their values are REQUIRED to be available on the funct
355339- `currency`
356340 - well-formed [Unicode Currency Identifier](https://unicode.org/reports/tr35/tr35.html#UnicodeCurrencyIdentifier)
357341 (no default)
358- - `compactDisplay` (this option only has meaning when combined with the option `notation=compact`)
359- - `short` (default)
360- - `long`
361- - `notation`
362- - `standard` (default)
363- - `compact`
364- - `numberingSystem`
365- - valid [Unicode Number System Identifier](https://unicode.org/reports/tr35/tr35.html#UnicodeNumberSystemIdentifier)
366- (default is locale-specific)
367342- `currencySign`
368343 - `accounting`
369344 - `standard` (default)
@@ -492,15 +467,6 @@ unless otherwise indicated:
492467 - `short` (default)
493468 - `narrow`
494469 - `long`
495- - `compactDisplay` (this option only has meaning when combined with the option `notation=compact`)
496- - `short` (default)
497- - `long`
498- - `notation`
499- - `standard` (default)
500- - `compact`
501- - `numberingSystem`
502- - valid [Unicode Number System Identifier](https://unicode.org/reports/tr35/tr35.html#UnicodeNumberSystemIdentifier)
503- (default is locale-specific)
504470- `signDisplay`
505471 - `auto` (default)
506472 - `always`
@@ -791,7 +757,6 @@ representing its decimal value:
791757- `minimumIntegerDigits`
792758- `minimumSignificantDigits`
793759- `maximumSignificantDigits`
794- - `notation`
795760
796761```abnf
797762integer = "0" / ["-"] ("1"-"9") *DIGIT
0 commit comments