jbt / markdown-editor

Live (Github-flavored) Markdown Editor
http://jbt.github.com/markdown-editor
ISC License
2.82k stars 643 forks source link

[Solved] Not working in Firefox due to charset #119

Closed github-young closed 4 years ago

github-young commented 4 years ago

It cannot work normally in Firefox 75.0. But Chrome is OK. It turns out that the absence of

<head>
...
<meta charset="UTF-8">
...
</head>

causes this.

Simply adding this line solves this problem.

aero31aero commented 4 years ago

Hey, it works properly for me in FF75, but I think being explicit here is a good idea. Do you think you could make a PR for this change? I'm very happy to merge one.

Thanks for the report.

github-young commented 4 years ago

Hey, it works properly for me in FF75, but I think being explicit here is a good idea. Do you think you could make a PR for this change? I'm very happy to merge one.

Thanks for the report.

Thank you. I have made a PR.