v7.6.4
Fixed bug in BEMTREE: special html field render as it’s value.
Example of BEMJSON: { block: 'b1', content: { html: '<br>' } }
Render result with v7.6.2 (before fix): { block: 'b1', content: '<br>' }
.
Render result with v7.6.3 (after fix): { block: 'b1', content: { html: '<br>' } }
.
Commits:
- [
1dc8b03f0b
] - BEMTREE: special unescaped html field from BEMJSON should render as is (miripiruni)