1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

All: Regression: Fixed issue with style embeded in notes

This commit is contained in:
Laurent Cozic
2020-03-06 18:22:40 +00:00
parent 8ba9e9efd8
commit 972e5aed8a
5 changed files with 26 additions and 2 deletions

View File

@ -454,6 +454,7 @@ class Setting extends BaseModel {
appTypes: ['desktop'],
label: () => _('Custom stylesheet for rendered Markdown'),
section: 'appearance',
advanced: true,
},
'style.customCss.joplinApp': {
onClick: () => {
@ -469,6 +470,8 @@ class Setting extends BaseModel {
appTypes: ['desktop'],
label: () => _('Custom stylesheet for Joplin-wide app styles'),
section: 'appearance',
advanced: true,
description: () => 'CSS file support is provided for your convenience, but they are advanced settings, and styles you define may break from one version to the next. If you want to use them, please know that it might require regular development work from you to keep them working. The Joplin team cannot make a commitment to keep the application HTML structure stable.',
},
autoUpdateEnabled: { value: true, type: Setting.TYPE_BOOL, section: 'application', public: true, appTypes: ['desktop'], label: () => _('Automatically update the application') },