WaniKani/WanaKana

Text showing non encoded in chrome and firefox

jking6884 opened this issue · 2 comments

image

this is the code I used

<textarea id="ime" autocapitalize="none" autocorrect="none" autocomplete="off"></textarea>
<script src="node_modules/wanakana/lib/wanakana.min.js"></script>
<script>
var input = document.getElementById('ime');
wanakana.bind(input);
</script>
DJTB commented

Can you show your whole html file?
That looks like a unicode display issue.

You might need <meta charset="utf-8"> in the <head></head> of your html.

Thanks @DJTB