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

Copy and paste from Browser convert to Markdown #290

Closed Offerel closed 3 years ago

Offerel commented 3 years ago

At least with StackEdit i can Copy&Paste from a website to the editor and this will convert the copied HTML to Markdown Syntax. Is this possible also with EasyMDE?

Offerel commented 3 years ago

Ok, found a workaround. Im using paste event and event.clipboardData.getData('text/html') now in combination with Turndown. I don't know if there is an easier way, but it works for me.