I have a template that shows German first and last names - something like
{{firstname}} {{lastname}}
If I provide a name like firstname="Peter", lastname="Müller", I get this in my result string:
Peter Müller
Is there any way in Handlebars.NET to AVOID this encoding? I just want the normal text "Peter Müller" back, since I need this inside an e-mail template.......
I have a template that shows German first and last names - something like
{{firstname}} {{lastname}}If I provide a name like firstname="Peter", lastname="Müller", I get this in my result string:
Peter MüllerIs there any way in Handlebars.NET to AVOID this encoding? I just want the normal text "Peter Müller" back, since I need this inside an e-mail template.......