1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Desktop, Mobile: Disable in-editor Markdown rendering by default (can be re-enabled in settings > note) (#13022)

This commit is contained in:
Henry Heino
2025-08-26 00:56:53 -07:00
committed by GitHub
parent 0ed7daaed8
commit c530b07f45

View File

@@ -1456,7 +1456,7 @@ const builtInMetadata = (Setting: typeof SettingType) => {
},
'editor.inlineRendering': {
value: true,
value: false,
type: SettingItemType.Bool,
public: true,
appTypes: [AppType.Desktop, AppType.Mobile],
@@ -1466,7 +1466,7 @@ const builtInMetadata = (Setting: typeof SettingType) => {
storage: SettingStorage.File,
},
'editor.imageRendering': {
value: true,
value: false,
type: SettingItemType.Bool,
public: true,
appTypes: [AppType.Desktop, AppType.Mobile],