You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Im running an older Haxe and Neko version and I noticed that HtmlEntities were not correctly written by the macro. "×" was converted to "×" in the generated js-output.
Im running an older Haxe and Neko version and I noticed that HtmlEntities were not correctly written by the macro. "×" was converted to "×" in the generated js-output.
I fixed it locally by adding the classic
Utf8.decode
in this line https://github.com/massiveinteractive/haxe-react/blob/master/src/lib/react/jsx/JsxParser.hx#L98:if (map.exists(entity)) result += haxe.Utf8.decode(map.get(entity));
I figure latest Neko does something differently there?
Tested with:
Haxe 3.4.4
neko 2.1.0
The text was updated successfully, but these errors were encountered: