In Nustach: ```fsharp 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: 