Merge pull request #122 from aidenybai/fix-active-graph-node

This commit is contained in:
Jacky Zhao 2022-05-03 12:29:26 -04:00 committed by GitHub
commit 037426217c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 5 deletions

View File

@ -1,5 +1,4 @@
async function drawGraph(
url,
baseUrl,
pathColors,
depth,
@ -10,7 +9,7 @@ async function drawGraph(
const container = document.getElementById('graph-container')
const { index, links, content } = await fetchData
const curPage = url.replace(baseUrl, '')
const curPage = window.location.href.replace(baseUrl, "").replace(/\/$/g, "")
const parseIdsFromLinks = (links) => [
...new Set(links.flatMap((link) => [link.source, link.target])),

View File

@ -3,7 +3,7 @@ enableToc: true
openToc: false
enableLinkPreview: true
enableLatex: true
enableSPA: false
enableSPA: true
description:
Host your second brain and digital garden for free. Quartz features extremely fast full-text search,
Wikilink support, backlinks, local graph, tags, and link previews.

View File

@ -18,7 +18,6 @@
<script src="{{ $js.Permalink }}"></script>
<script>
drawGraph(
{{strings.TrimRight "/" .Page.Permalink}},
{{strings.TrimRight "/" .Site.BaseURL}},
{{$.Site.Data.graphConfig.paths}},
{{$.Site.Data.graphConfig.depth}},

View File

@ -75,7 +75,6 @@
container.textContent = "";
drawGraph(
{{strings.TrimRight "/" .Page.Permalink}},
{{strings.TrimRight "/" .Site.BaseURL}},
{{$.Site.Data.graphConfig.paths}},
{{$.Site.Data.graphConfig.depth}},