mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
11 lines
313 B
JavaScript
11 lines
313 B
JavaScript
const Setting = require('../models/Setting').default;
|
|
|
|
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;
|