sparksuite / simplemde-markdown-editor

A simple, beautiful, and embeddable JavaScript Markdown editor. Delightful editing for beginners and experts alike. Features built-in autosaving and spell checking.
https://simplemde.com
MIT License
9.8k stars 1.12k forks source link

Empty separator #723

Open MR-H0200 opened 5 years ago

MR-H0200 commented 5 years ago
new SimpleMDE({
            hideIcons: ['guide',],
            showIcons: [ 'undo', 'redo'],
            element: $('.textarea')
        });

image

there is a empty separator near undo and redo

dninomiya commented 4 years ago

I made this compromise 😢

  .separator + .separator {
    display: none;
  }