Skip to content

v7.6.4

Compare
Choose a tag to compare
@miripiruni miripiruni released this 10 Jan 10:19
· 359 commits to master since this release

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)