Created
October 9, 2020 09:34
-
-
Save pihentagy/e8d7258ee7087a14d405cc7ef5ecd912 to your computer and use it in GitHub Desktop.
Clutter free edit mode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* inline formatting, link targets and [[ ]] disappears if not active line*/ | |
div:not(.CodeMirror-activeline) > .CodeMirror-line span.cm-formatting, | |
div:not(.CodeMirror-activeline) > .CodeMirror-line span.cm-string.cm-url, | |
div:not(.CodeMirror-activeline) > .CodeMirror-line span.cm-formatting-link, | |
div:not(.CodeMirror-activeline)>.CodeMirror-line span.cm-hmd-barelink, | |
div:not(.CodeMirror-activeline)>.CodeMirror-line span.cm-comment | |
{ display: none; } | |
/* hide all html tags -- IT IS COMMENTED OUT BY DEFAULT */ | |
/* div:not(.CodeMirror-activeline) > .CodeMirror-line span.cm-tag{ display: none; } */ | |
/* except list markers */ span.cm-formatting-list, | |
/*code block backticks */ span.cm-formatting-code-block.cm-hmd-codeblock, | |
/* optionally header hashes */ span.cm-formatting-header | |
{ display: inline !important; } | |
/* and task checkboxes */ | |
span.cm-formatting-task { display: inline !important; font-family: monospace; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment