simplemde-markdown-editor icon indicating copy to clipboard operation
simplemde-markdown-editor copied to clipboard

Hide characters

Open Sjoerd opened this issue 5 years ago • 1 comments

Is it possible to hide the tokens in the editor?

(This) Schermafbeelding 2019-04-19 om 09 35 47

(Instead of this) Schermafbeelding 2019-04-19 om 09 35 56

Sjoerd avatar Apr 19 '19 07:04 Sjoerd

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.

luckyshot avatar Nov 11 '19 17:11 luckyshot