mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
BREAKING CHANGES:
"{" is used a a delimiter for ICU messages then it could not be used in text nodes.
"{" should be escaped as "{{ '{' }}"
Before:
<span>some { valid } text</span>
After:
<span>some { invalid } text<span> <!-- throw parse error -->
<span>some {{ '{' }} valid } text</span>
|
||
|---|---|---|
| .. | ||
| async_route_spec_impl.ts | ||
| aux_route_spec_impl.ts | ||
| fixture_components.ts | ||
| sync_route_spec_impl.ts | ||