Nustache
Nustache copied to clipboard
Nustache incorrectly escapes unicode characters
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: