vault backup: 2022-12-09 12:59:39

This commit is contained in:
Bram Adams
2022-12-09 12:59:39 -06:00
parent 5968bea717
commit 4600b54cd3
33 changed files with 86531 additions and 68 deletions

View File

@@ -25,10 +25,19 @@ module.exports = async function listFiles(params) {
//then sort the files in the inner folder
const ROOT = "_PARA/Projects/";
const Kanban = "Kanban.md";
const Scratchpad = "Scratchpad.md";
// Display files to select
const notesDisplay = await params.quickAddApi.suggester(
(files) => files.path.replace(".md", ""),
(files) => files.path
.replace(ROOT, "")
.replace(Kanban, "")
.replace(Scratchpad, "")
.replace(".md", "")
.replace("/", ""),
files
);

View File

@@ -0,0 +1,8 @@
module.exports = (params) => {
params.variables.fileType = {
folder: "Projects",
//folderExclude: "",
// There's no folder to exclude so I commented it out
filename:"Kanban"
};
}