Can't seem to handle German umlauts....
See original GitHub issueI 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…
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Can't seem to handle German umlauts.... · Issue #276
I have a template that shows German first and last names - something like {{firstname}} ... Can't seem to handle German umlauts.... #276....
Read more >encoding - I just can't seem to get my german umlauts right ...
I process it and do this: # Write to file $output | Out-File -Filepath C:\Users\Soc.20150119_output.txt -append. Now each time, the Umlauts ...
Read more >German umlauts: How to use them & type them
To do this, go to "Settings" > "General" > "Keyboard" > "Keyboards" > "Add New Keyboard" and select "German".
Read more >Do Germans always put umlauts when writing online/texting?
Yes of course. On a german keyboard they are their own buttons and that lines up with how these letters feel. They have...
Read more >Why can't some people pronounce German umlauts (ä,ö, ü)?
First, I must say that the question is unclear. Technically speaking, umlaut means a grammatical process where a back vowel turns to a...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

HandlebarsJS has a configuration option
noEscapethat disables all encoding. I think aNoEscapeboolean on configuration that controls/overrides the EncodedTextWriter would be appropriate.👍 For adding this fix to the next version of Handlebars.NET.