mirror of
https://github.com/zadam/trilium.git
synced 2025-11-18 03:00:41 +01:00
Add import option to replace underscores with spaces in note names (#1064)
This commit is contained in:
@@ -21,7 +21,8 @@ async function importToBranch(req) {
|
||||
shrinkImages: req.body.shrinkImages !== 'false',
|
||||
textImportedAsText: req.body.textImportedAsText !== 'false',
|
||||
codeImportedAsCode: req.body.codeImportedAsCode !== 'false',
|
||||
explodeArchives: req.body.explodeArchives !== 'false'
|
||||
explodeArchives: req.body.explodeArchives !== 'false',
|
||||
replaceUnderscoresWithSpaces: req.body.replaceUnderscoresWithSpaces !== 'false'
|
||||
};
|
||||
|
||||
const file = req.file;
|
||||
|
||||
Reference in New Issue
Block a user