@@ -86,6 +86,10 @@ The examples are offered that use the following two API styles:
8686- ` VueI18n.prototype.getChoiceIndex `
8787 - -> Legacy API style: ` pluralizationRules ` option of ` createI18n ` factory function (like ` new VueI18n(...) ` )
8888 - -> Compsable API style: ` pluralRules ` option of ` createI18nComposer ` factory function
89+ - ` warnHtmlInMessage ` option:
90+ - Composable API: ` warnHtmlMessage ` boolean option, default ` true ` .
91+ - For development mode, warning is default.
92+ - For production mode, HTML message detect is not check due to performance.
8993- ` VueI18n.version ` -> ` import { VERSION } from 'vue-i18n' `
9094- ` VueI18n.availabilities ` -> ` import { availabilities } from 'vue-i18n' `
9195- See the details [ here] ( https://github.com/intlify/vue-i18n-next/blob/master/docs/vue-i18n.md )
@@ -137,15 +141,15 @@ yarn add vue-i18n@next
137141- Intlify message format compiler
138142 - [x] vue-i18n message format
139143 - [ ] sourcemap
140- - [ ] HTML format handling
144+ - [x ] HTML format handling
141145 - [x] error handling
142146 - [ ] more unit (fuzzing) tests
143147 - [ ] performance tests (benchmark)
144148- Intlify core runtime
145149 - [x] translate function
146150 - [x] datetime function
147151 - [x] number function
148- - [ ] warnHtmlInMessage
152+ - [x] warnHtmlMessage
149153 - [x] improve translate ` args ` typing
150154 - [ ] improve locale messages typing: ` LocaleMessages ` / ` LocaleMessage ` / ` LocaleMessageDictiory `
151155 - [x] postTranslation context option
@@ -163,6 +167,7 @@ yarn add vue-i18n@next
163167 - [x] fallbackFormat
164168 - [x] dateTimeFormats
165169 - [x] numberFormats
170+ - [x] warnHtmlMessage
166171 - methods
167172 - [x] t
168173 - [x] getLocaleMessages
@@ -195,7 +200,7 @@ yarn add vue-i18n@next
195200 - [x] silentFallbackWarn
196201 - [x] formatFallbackMessages
197202 - [ ] preserveDirectiveContent
198- - [ ] warnHtmlInMessage
203+ - [x ] warnHtmlInMessage
199204 - [x] postTranslation
200205 - [x] t
201206 - [x] tc
0 commit comments