Skip to content

Template partial keeps getting html escaped #524

Description

@BartVanBeurden

I have a layout partial

partials/layout.hbs

<html>
<body>
<div class="content">
{{> content}}
</div>
</body>
</html>

and a message handlebars that uses this layout

message.hbs

{{#> layout}}
{{#*inline "content"}}
<b>{{ Data.Message }}</b>
{{/inline}}
{{/layout}}

With the default configuration all my html tags are getting escaped (both in the layout.hbs as well as in the inline content hbs). Why? How do I fix this?
I don't believe this is normal behaviour for handlebars.js

The only way to render this properly is to pass in NoEscape in the configuration, but this has the unwanted side-effect that my {{ Data.Message }} does not get sanitized and can also contain html.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions