From 591c4813ec8ee700caa45253464290d315d57603 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun, 28 Aug 2022 05:09:52 +0000
Subject: [PATCH] deps: bump hugo-obsidian version
---
assets/js/graph.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/assets/js/graph.js b/assets/js/graph.js
index 174d494..c89877b 100644
--- a/assets/js/graph.js
+++ b/assets/js/graph.js
@@ -155,7 +155,7 @@
const nodeRadius = (d) => {
const numOut = index.links[d.id]?.length || 0
const numIn = index.backlinks[d.id]?.length || 0
- return 3 + (numOut + numIn) / 4
+ return 2 + Math.sqrt(numOut + numIn)
}
// draw individual nodes
--
Gitblit v1.10.0