2 hours ago · Tech · 0 comments

TL;DR: A pinned sidebar panel that shows a date-sorted table of all notes linking to currently viewing. Usually in obsidian I have a graph view of open but ive found this to be better in understanding connections, since i can view the created and modified dates. Just make sure you have dataview installed and then make sure to drag this into the panel area of you choice. Note the markdown needs to have ‘dataviewjs’ after the three backwhacks also sorry if you aren’t in dark mode, i need to fix the coloring for light mode…. sorry async function render() { dv.container.empty(); const btn = dv.container.createEl("button", { text: "Refresh" }); btn.style.marginBottom = "12px"; btn.onclick = () => render(); const selfPath = dv.current().file.path; let target = null; let bestTime = 0; app.workspace.iterateAllLeaves(leaf => { if (leaf.view.getViewType() !== "markdown") return; const file = leaf.view.file; if (!file || file.path === selfPath) return; if (leaf.activeTime > bestTime) { bestTime…

No comments yet. Log in to reply on the Fediverse. Comments will appear here.