Ionaru / easy-markdown-editor

EasyMDE: A simple, beautiful, and embeddable JavaScript Markdown editor. Delightful editing for beginners and experts alike. Features built-in autosaving and spell checking.
https://stackblitz.com/edit/easymde
MIT License
2.39k stars 316 forks source link

X's showing up in editor #114

Open jessjkim opened 5 years ago

jessjkim commented 5 years ago

When typing into the editor, XXXX's show up on the first line. Any idea why this is happening?

Screen Shot 2019-08-21 at 11 40 07 AM
Ionaru commented 5 years ago

Both the font and spacing of the lines seem off. Is there any javascript of CSS interfering with the editor?

Try reproducing this on https://easymde.tk/

oneiros commented 5 years ago

This happened to me when I imported the css from the npm package this way:

@import "~easymde/src/css/easymde";

The fix then was of course to use the properly compiled final version:

@import "~easymde/dist/easymde.min";
n2o commented 4 years ago

This solved it for us! Thanks 🎉