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.32k stars 308 forks source link

How can i remove auto complete feature? #509

Open komplamoose opened 1 year ago

komplamoose commented 1 year ago

First of all, thank you for creating this wonderful library.

I am now creating a collaborative text editor based on CRDT.

1. test1 << press "enter"
2.  << AUTO COMPLETE

While working, I found out that this editor supports automatic completion in grammar related to markdown. The user experience will be low, but I don't want to consider it because it's currently difficult to convert and synchronize all of these automatic generations.

Unfortunately, even after trying to Google or document, I couldn't find a way to remove this auto-complete feature.

I found a project that used this library to create a similar function, but I found that it was not automatically completed.

Although I referred to the options in this project, it is being completed automatically. What should I do in this case?

I'm sorry to leave you with a silly question.