Skip to content

Instantly share code, notes, and snippets.

@mborus
Created April 11, 2026 09:11
Show Gist options
  • Select an option

  • Save mborus/3880212d3a017038bc31a108ffeff984 to your computer and use it in GitHub Desktop.

Select an option

Save mborus/3880212d3a017038bc31a108ffeff984 to your computer and use it in GitHub Desktop.
Joplin userchrome.css to remove all styling
/* 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;
}
@mborus

mborus commented Apr 11, 2026

Copy link
Copy Markdown
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment