(htmlAstWithErrors: ParseTreeResult)
| 193 | } |
| 194 | |
| 195 | export function processI18nMeta(htmlAstWithErrors: ParseTreeResult): ParseTreeResult { |
| 196 | return new ParseTreeResult( |
| 197 | html.visitAll(new I18nMetaVisitor(/* keepI18nAttrs */ false), htmlAstWithErrors.rootNodes), |
| 198 | htmlAstWithErrors.errors, |
| 199 | ); |
| 200 | } |