次のような JSON があります。
{ "something": "http://something.com" }
HTML は次のようになります。
<a href="{{something}}">{{something}}</a>
Mustache を適用すると、
<a href="%7B%7Bsomething%7D%7D">http://something.com</a>
しかし、私が取得しようとしているのは
<a href="http://something.com">http://something.com</a>
{{{ something}}}
、、一重引用符、二重引用符は既に試しました{{& something}}
...ドキュメントも読みました。
手伝って頂けますか?