Jeroen Akkerman
Jeroen Akkerman
Renaming the `toTextArea()` function is not possible in any `2.x.x` version because it would break backwards compatibility. Maybe an alias is acceptable?
It is mentioned in the readme. https://github.com/Ionaru/easy-markdown-editor#removing-easymde-from-text-area
See https://github.com/Ionaru/easy-markdown-editor/issues/437
Fullscreen is still available using F11 even if the button is not in the toolbar. The `sideBySideFullscreen` option is set to `false` by default because the editor is usually not...
Easily doable using custom toolbar buttons. ```js const easyMDE = new EasyMDE({ toolbar: [ { name: 'mention-hashtag', title: "Mention", action: (editor) => { const cm = editor.codemirror; const text =...
I agree that would be easier, but I'm trying to keep new configuration options tot a minimum until I have had the chance to rewrite the editor and get a...
Using a custom toolbar button, you can have it go to any URL you want. ```js const easyMDE = new EasyMDE({ toolbar: [ { name: 'guide', title: "Guide", action: 'https://www.heise.de/mac-and-i/downloads/65/1/1/6/7/1/0/3/Markdown-CheatSheet-Deutsch.pdf',...
I agree that would be easier, but I'm trying to keep new configuration options tot a minimum until I have had the chance to rewrite the editor and get a...
This should be easy enough using the existing list code, just a few extra characters.