We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Nustach:
open Nustache.Core let x = Map.ofList ["name", "你好"] Render.StringToString("{{name}}", x)
this code gives "你好" Note that 你好 is escaped incorrectly.
"你好"
你好
On contrary, in Mustache demo, it renders correctly:
The text was updated successfully, but these errors were encountered:
Fix unicode rendering
89e4189
jdiamond/Nustache#126
No branches or pull requests
In Nustach:
this code gives
"你好"
Note that你好
is escaped incorrectly.On contrary, in Mustache demo, it renders correctly:
The text was updated successfully, but these errors were encountered: