mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
11 lines
306 B
JavaScript
11 lines
306 B
JavaScript
|
const Setting = require('lib/models/Setting');
|
||
|
|
||
|
const script = {};
|
||
|
|
||
|
script.exec = async function() {
|
||
|
Setting.setValue('markdown.plugin.softbreaks', Setting.value('markdown.softbreaks'));
|
||
|
Setting.setValue('markdown.plugin.typographer', Setting.value('markdown.typographer'));
|
||
|
};
|
||
|
|
||
|
module.exports = script;
|