simplemde-markdown-editor
simplemde-markdown-editor copied to clipboard
Hide characters
Is it possible to hide the tokens in the editor?
(This)
(Instead of this)
It can be easily done with CSS:
.cm-formatting {
display: none;
}
Edit: Has some unexpected behaviour while editing (i.e. typing #
won't display anything until a space is typed). So not ideal, if there was a focus or active CSS class that would be a quick nice workaround.