From 0f2de4e960c0f083aa217b7b93ade5d563950fc4 Mon Sep 17 00:00:00 2001 From: Liam Ball Date: Thu, 5 Nov 2020 15:13:30 +1300 Subject: [PATCH] Add roadmap --- readme.md | 5 +++++ server/index.js | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 6bf2f82..d5d749c 100644 --- a/readme.md +++ b/readme.md @@ -17,6 +17,11 @@ Inspired by jplattel's [Obsidian clipper](https://github.com/jplattel/obsidian-c - Notes use a Zettelkasten identifier prefix, and the title of the webpage. - Downloads highlighted images to a custom attatchement folder, and updates links in the note. +## Roadmap + +- Allow adding tags in browser to recently saved note +- Download and link images asynchronously +- Intergrate server into Obsidian plugin (?) ## Installation: --- diff --git a/server/index.js b/server/index.js index 9400aa2..18188f5 100644 --- a/server/index.js +++ b/server/index.js @@ -190,7 +190,7 @@ function saveToVault(data, filename){ } -async function downloadImages(bm){ +async function downloadImages(bm){ //TODO make async return new Promise(async (resolve,reject)=>{ if(settings.download_images){ for(i = 0; i < bm.imageLinks.length;i++){