前言
Joplin是一款极佳的笔记软件,拥有开源、免费、可自定义程度高等多种优点,但其默认的软件主题和Markdown渲染样式实在是过于朴素简陋,使人提不起创作的欲望。好在Joplin拥有极强的可自定义功能和强大的社区,使我们能够组合设计出自己喜爱的Joplin主题样式。
接下来是本人日常使用的主题样式。
Joplin主题
macos theme plugin
直接在设置中的“插件”选项中搜索 “macos theme”安装,然后重启后打开macos theme 这个插件,打开该插件对应的设置页面,将样式调成light模式,同时Joplin本身的外观设置也需要保持亮色模式。再次重启Joplin,发现全局主题已经改变。此外,该插件主题也同时支持暗色主题和自定义主题颜色。
Markdown渲染样式
李笑来的Markdownhere
本文采用的是李笑来制作的一套CSS主题,名称为Markdownhere,其已开源在 GitHub 上,对于中文的显示效果比较友好,字距、行距比直接套用英文模板更加自然,是为数不多的优质中文 CSS 主题。
主题源码如下:
将源码复制至Joplin配置中的userstyle.css中即可,该配置文件可以从工具——>选项——>外观——>显示高级选项——>适用于已渲染Markdown的自定义样式表中找到。
.markdown-here-wrapper {
font-size: 16px;
line-height: 1.8em;
letter-spacing: 0.1em;
}
pre, code {
font-size: 14px;
font-family: Roboto, 'Courier New', Consolas, Inconsolata, Courier, monospace;
margin: auto 5px;
}
code {
white-space: pre-wrap;
border-radius: 2px;
display: inline;
}
pre {
font-size: 15px;
line-height: 1.4em;
display: block; !important;
}
pre code {
white-space: pre;
overflow: auto;
border-radius: 3px;
padding: 1px 1px;
display: block !important;
}
strong, b{
color: #BF360C;
}
em, i {
color: #009688;
}
hr {
border: 1px solid #BF360C;
margin: 1.5em auto;
}
p {
margin: 1.5em 5px !important;
}
table, pre, dl, blockquote, q, ul, ol {
margin: 10px 5px;
}
ul, ol {
padding-left: 15px;
}
li {
margin: 10px;
}
li p {
margin: 10px 0 !important;
}
ul ul, ul ol, ol ul, ol ol {
margin: 0;
padding-left: 10px;
}
ul {
list-style-type: circle;
}
dl {
padding: 0;
}
dl dt {
font-size: 1em;
font-weight: bold;
font-style: italic;
}
dl dd {
margin: 0 0 10px;
padding: 0 10px;
}
blockquote, q {
border-left: 2px solid #009688;
padding: 0 10px;
color: #777;
quotes: none;
margin-left: 1em;
}
blockquote::before, blockquote::after, q::before, q::after {
content: none;
}
h1, h2, h3, h4, h5, h6 {
margin: 20px 0 10px;
padding: 0;
font-style: bold !important;
color: #009688 !important;
text-align: center !important;
margin: 1.5em 5px !important;
padding: 0.5em 1em !important;
}
h1 {
font-size: 24px !important;
}
h2 {
font-size: 20px !important;
}
h3 {
font-size: 18px;
}
h4 {
font-size: 16px;
}
table {
padding: 0;
border-collapse: collapse;
border-spacing: 0;
font-size: 1em;
font: inherit;
border: 0;
margin: 0 auto;
}
tbody {
margin: 0;
padding: 0;
border: 0;
}
table tr {
border: 0;
border-top: 1px solid #CCC;
background-color: white;
margin: 0;
padding: 0;
}
table tr:nth-child(2n) {
background-color: #F8F8F8;
}
table tr th, table tr td {
font-size: 16px;
border: 1px solid #CCC;
margin: 0;
padding: 5px 10px;
}
table tr th {
font-weight: bold;
color: #eee;
border: 1px solid #009688;
background-color: #009688;
}
复制完成后保存,重启Joplin即可。
问题及解决方法
当使用macos theme的插件主题之后,插件中的主题样式会覆盖部分的自定义CSS样式,可以通过在自定义CSS样式后添上!important
强制使用自定义的样式。
例如对上文中的Markdownhere进行更改:
.markdown-here-wrapper {
font-size: 16px !important;
line-height: 1.8em !important;
letter-spacing: 0.1em !important;
}
pre, code {
font-size: 14px !important;
font-family: Roboto, 'Courier New', Consolas, Inconsolata, Courier, monospace !important;
margin: auto 5px !important;
}
code {
white-space: pre-wrap !important;
border-radius: 2px !important;
display: inline !important;
}
pre {
font-size: 15px !important;
line-height: 1.4em !important;
display: block; !important;
}
pre code {
white-space: pre !important;
overflow: auto !important;
border-radius: 3px !important;
padding: 1px 1px !important;
display: block !important;
}
strong, b{
color: #BF360C !important;
}
em, i {
color: #009688 !important;
}
hr {
border: 1px solid #BF360C !important;
margin: 1.5em auto !important;
}
p {
margin: 1.5em 5px !important;
}
table, pre, dl, blockquote, q, ul, ol {
margin: 10px 5px !important;
}
ul, ol {
padding-left: 15px !important;
}
li {
margin: 10px !important;
}
li p {
margin: 10px 0 !important;
}
ul ul, ul ol, ol ul, ol ol {
margin: 0 !important;
padding-left: 10px !important;
}
ul {
list-style-type: circle !important;
}
dl {
padding: 0 !important;
}
dl dt {
font-size: 1em !important;
font-weight: bold !important;
font-style: italic !important;
}
dl dd {
margin: 0 0 10px !important;
padding: 0 10px !important;
}
blockquote, q {
border-left: 2px solid #009688 !important;
padding: 0 10px !important;
color: #777 !important;
quotes: none !important;
margin-left: 1em !important;
}
blockquote::before, blockquote::after, q::before, q::after {
content: none !important;
}
h1, h2, h3, h4, h5, h6 {
margin: 20px 0 10px !important;
padding: 0 !important;
font-style: bold !important;
color: #009688 !important;
text-align: center !important;
margin: 1.5em 5px !important;
padding: 0.5em 1em !important;
}
h1 {
font-size: 24px !important;
border-bottom: 1px solid #ddd !important;
}
h2 {
font-size: 20px !important;
border-bottom: 1px solid #eee !important;
}
h3 {
font-size: 18px !important;
}
h4 {
font-size: 16px !important;
}
table {
padding: 0 !important;
border-collapse: collapse !important;
border-spacing: 0 !important;
font-size: 1em !important;
font: inherit !important;
border: 0 !important;
margin: 0 auto !important;
}
tbody {
margin: 0 !important;
padding: 0 !important;
border: 0 !important;
}
table tr {
border: 0 !important;
border-top: 1px solid #CCC !important;
background-color: white !important;
margin: 0 !important;
padding: 0 !important;
}
table tr:nth-child(2n) {
background-color: #F8F8F8 !important;
}
table tr th, table tr td {
font-size: 16px !important;
border: 1px solid #CCC !important;
margin: 0 !important;
padding: 5px 10px !important;
}
table tr th {
font-weight: bold !important;
color: #eee !important;
border: 1px solid #009688 !important;
background-color: #009688 !important;
}
更改后发现自定义的CSS样式不再会被插件主题样式覆盖。
最终效果: