From 36458ad166f50b3b4c06c34cfe6215dfc46a6673 Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Mon, 11 Sep 2023 09:57:00 +0200 Subject: [PATCH] trimed trailing whitespaces --- cli/node/app.js | 6 ++--- cli/node/notes.bat | 2 +- cli/quick/app.js | 10 ++++----- handler.php | 2 +- index.html | 2 +- main.js | 56 +++++++++++++++++++++++----------------------- readme.md | 2 +- split.css | 4 ++-- split.html | 2 +- style.css | 2 +- 10 files changed, 44 insertions(+), 44 deletions(-) diff --git a/cli/node/app.js b/cli/node/app.js index 02a46bd..b7fabd0 100644 --- a/cli/node/app.js +++ b/cli/node/app.js @@ -148,7 +148,7 @@ axios.post(`${settings.url}/handler.php`, } notes.unshift(currentnote); console.log(`Creating new note: ${title}`); - editnote(); + editnote(); } break; @@ -158,7 +158,7 @@ axios.post(`${settings.url}/handler.php`, console.log(`[${i}] ${notes[i].title}`); } break; - + default: var arg = command; if (arg === "open" || arg === "edit") @@ -181,7 +181,7 @@ axios.post(`${settings.url}/handler.php`, else { console.log(`Note ${arg} not found`); - } + } break; } }); diff --git a/cli/node/notes.bat b/cli/node/notes.bat index 600bba1..4ba27bb 100644 --- a/cli/node/notes.bat +++ b/cli/node/notes.bat @@ -1 +1 @@ -@node app %1 %2 \ No newline at end of file +@node app %1 %2 diff --git a/cli/quick/app.js b/cli/quick/app.js index 82ad572..91342c3 100644 --- a/cli/quick/app.js +++ b/cli/quick/app.js @@ -13,7 +13,7 @@ function editnote() file.close(); os.exec(["cp", "data/note.md", "data/backup.md"]); - + os.exec(settings.editor.concat("data/note.md")); var newcontent = std.loadFile("data/note.md"); @@ -38,7 +38,7 @@ function editnote() file.puts(postdata); file.close(); - os.exec(["curl", "-X", "POST", + os.exec(["curl", "-X", "POST", "-d", "@data/postdata", settings.url + "/handler.php"]); @@ -92,7 +92,7 @@ else } notes.unshift(currentnote); console.log(`Creating new note: ${title}`); - editnote(); + editnote(); } break; @@ -102,7 +102,7 @@ else console.log(`[${i}] ${notes[i].title}`); } break; - + default: var arg = command; if (arg === "open" || arg === "edit") @@ -125,7 +125,7 @@ else else { console.log(`Note ${arg} not found`); - } + } break; } } diff --git a/handler.php b/handler.php index f4d6bc2..676b025 100644 --- a/handler.php +++ b/handler.php @@ -37,7 +37,7 @@ else if (isset($_POST['action'])) else { echo '{}'; - } + } break; case 'cal': diff --git a/index.html b/index.html index d9d2d3a..59d9963 100644 --- a/index.html +++ b/index.html @@ -22,7 +22,7 @@ - + diff --git a/main.js b/main.js index 25460b9..1260ad7 100644 --- a/main.js +++ b/main.js @@ -150,7 +150,7 @@ var themes = fontsize: "16px", fontcolor: "rgb(78,78,78)", lineheight: "24px", - accentcolor: "rgb(54,54,54)" + accentcolor: "rgb(54,54,54)" } }; @@ -429,7 +429,7 @@ function createsubnote(suggestedtitle) var content = getrangecontent(range); filter.placeholder = "Create subnote..."; searchinlist(name) - .then(title => + .then(title => { if (!title) { @@ -443,7 +443,7 @@ function createsubnote(suggestedtitle) } else { - var newnote = + var newnote = { title: title, content: content @@ -475,7 +475,7 @@ function includesub() if (confirm("Replace [[" + title + "]] by its content?")) { var subnote = getnote(title); - md.value = + md.value = md.value.substring(0, range.start) + subnote.content + md.value.substring(range.end); @@ -520,7 +520,7 @@ function showinfo() var tags = gettags(currentnote); showtemporaryinfo( [ - "vault: " + currentvault, + "vault: " + currentvault, "saved: " + saved, "title: " + currentnote.title, "cursor position: " + md.selectionStart + " (" + pospercent() + "%)", @@ -597,14 +597,14 @@ function switchvault() if (confirm("Switch to " + newvault + "?")) { applyvault(newvault); - } + } } function ancestors(note) { var list = [note]; var result = []; - + while (list.length) { var current = list.shift(); @@ -621,7 +621,7 @@ function descendants(note) { var list = [note]; var result = []; - + while (list.length) { var current = list.shift(); @@ -652,7 +652,7 @@ function connected(note) { var list = [note]; var result = []; - + while (list.length) { var current = list.shift(); @@ -680,7 +680,7 @@ function shownotelinks() var edges = []; var list = [currentnote]; - + while (list.length) { var current = list.shift(); @@ -704,7 +704,7 @@ function shownotelinks() from: id(current), to: id(buddy) }); - } + } }); } } @@ -714,7 +714,7 @@ function shownotelinks() edges: edges }; - var options = + var options = { nodes: { @@ -731,7 +731,7 @@ function shownotelinks() } } }; - + var graph = new vis.Network(network, data, options); graph.on("click", function(event) { @@ -765,7 +765,7 @@ function showoutline() else if (line == "---" && index != 0 && index != 3) { var next; - if (next = lines.find((current, i) => + if (next = lines.find((current, i) => { return i > index && current != ""; })) @@ -796,14 +796,14 @@ function linkrangeatpos() { var start = md.value.lastIndexOf("[[", md.selectionStart); if (start == -1 || md.value.substring(start, md.selectionStart).indexOf("\n") != -1) return null - + var end = md.value.indexOf("]]", md.selectionStart); if (end == -1 || md.value.substring(md.selectionStart, end).indexOf("\n") != -1) return null; return { start: start, end: end + 2 - }; + }; } function linkatpos() @@ -825,7 +825,7 @@ function tagatpos() var start = md.value.lastIndexOf(" ", md.selectionStart); if (start == -1 || md.value.substring(start, md.selectionStart).indexOf("\n") != -1) return ""; - + var eol = md.value.indexOf("\n", md.selectionStart); var end = md.value.indexOf(",", md.selectionStart); @@ -833,7 +833,7 @@ function tagatpos() { end = eol; } - + return md.value.substring(start + 1, end); } @@ -1069,8 +1069,8 @@ function downloadnotewithsubs() var note = withsubs(); if (note) { - download(note.title + ".md", note.content); - } + download(note.title + ".md", note.content); + } } function downloadnote() @@ -1595,7 +1595,7 @@ function md2html(content) { converter.setOption("openLinksInNewWindow", true); } - + var html = converter.makeHtml(content); // internal links @@ -2094,7 +2094,7 @@ function renamereferences(newname) .forEach(note => { note.content = note.content.replaceAll("[[" + currentnote.title + "]]", "[[" + newname + "]]"); - }); + }); } function rename(newname) @@ -2410,7 +2410,7 @@ function withsubs() { try { - descendants(currentnote); + descendants(currentnote); } catch (err) { @@ -2418,7 +2418,7 @@ function withsubs() return null; } - var tempnote = + var tempnote = { title: currentnote.title + " (with subnotes)", content: md.value @@ -2456,8 +2456,8 @@ function togglepreviewwithsubs() { resize(); md.focus(); - } - } + } + } } function bindfile(note) @@ -2475,7 +2475,7 @@ function bindfile(note) if (changed) { md.style.height = "0px"; - } + } resize(); // to improve... @@ -2499,7 +2499,7 @@ function loadnote(name) if (!preview.hidden || (preview.hidden && gettags(note).indexOf("preview") !== -1)) { togglepreview(); - } + } } function sendpassword() diff --git a/readme.md b/readme.md index 941543e..ae92971 100644 --- a/readme.md +++ b/readme.md @@ -6,7 +6,7 @@ launch index.html from your web server or local computer, or try https://notes.o your notes are stored in your browser local storage. -## remote mode +## remote mode you can use remote mode with your own php server to access your notes from the cloud. diff --git a/split.css b/split.css index 83c7805..8d52510 100644 --- a/split.css +++ b/split.css @@ -13,9 +13,9 @@ iframe { } #left { - float: left; + float: left; } #right { - float: right; + float: right; } \ No newline at end of file diff --git a/split.html b/split.html index 4b2e3be..24cc43c 100644 --- a/split.html +++ b/split.html @@ -13,5 +13,5 @@ - + \ No newline at end of file diff --git a/style.css b/style.css index 737b59a..2720e1c 100644 --- a/style.css +++ b/style.css @@ -50,7 +50,7 @@ body::-webkit-scrollbar-thumb { color: inherit; resize: none; - + font-family: inherit; font-size: inherit; line-height: inherit;