Created
April 11, 2026 09:11
-
-
Save mborus/3880212d3a017038bc31a108ffeff984 to your computer and use it in GitHub Desktop.
Joplin userchrome.css to remove all styling
This file contains hidden or 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
| /* Remove all markdown styling in editor */ | |
| .cm-header, | |
| .cm-strong, | |
| .cm-em, | |
| .cm-link, | |
| .cm-quote, | |
| .cm-variable-2, | |
| .cm-meta, | |
| .cm-tag { | |
| font-weight: normal !important; | |
| font-size: 1em !important; | |
| color: inherit !important; | |
| } | |
| /* Make everything same font */ | |
| .CodeMirror, | |
| .cm-s-default { | |
| font-family: Consolas, monospace !important; | |
| font-size: 14px !important; | |
| line-height: 1.3 !important; | |
| } | |
| /* Remove heading size differences */ | |
| .cm-header-1, | |
| .cm-header-2, | |
| .cm-header-3, | |
| .cm-header-4, | |
| .cm-header-5, | |
| .cm-header-6 { | |
| font-size: 1em !important; | |
| } | |
| /* Disable bold/italic appearance */ | |
| .cm-strong { | |
| font-weight: normal !important; | |
| } | |
| .cm-em { | |
| font-style: normal !important; | |
| } | |
| /* Optional: remove link coloring */ | |
| .cm-link { | |
| text-decoration: none !important; | |
| color: inherit !important; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To remove all styling in the Joplin Markdown view
copy this file to
"C:\Users<your-username>.config\joplin-desktop"
on windows (or where the jopling-desktop resides on your other operating system)
then close Joplin completely (including tray icon) and start fresh.
The markdown editor now looks a lot more like a raw text editor.