Skip to content

v6.5.4

Compare
Choose a tag to compare
@miripiruni miripiruni released this 18 Jul 15:48
· 442 commits to master since this release

Fixed case with html and tag fields.

{
    tag: false,
    html: '<script>console.log("hello html");</script>'
}

Result with v6.5.3:

[object Object]

Result with v6.5.4:

<script>console.log("hello html");</script>

Commits:

  • [e9cd0bf6ac] - BEMHTML: should properly render unescaped html field if tag:false present (fix for #312) (miripiruni)