From 23df17233da3f16db5166cf8a05b2089bd1f006a Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon, 10 Mar 2025 18:39:08 +0000
Subject: [PATCH] fix(graph): make graph non-singleton, proper cleanup, fix radial
---
quartz.config.ts | 15 ++++++++++-----
1 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/quartz.config.ts b/quartz.config.ts
index a2eb605..51a7551 100644
--- a/quartz.config.ts
+++ b/quartz.config.ts
@@ -2,13 +2,14 @@
import * as Plugin from "./quartz/plugins"
/**
- * Quartz 4.0 Configuration
+ * Quartz 4 Configuration
*
* See https://quartz.jzhao.xyz/configuration for more information.
*/
const config: QuartzConfig = {
configuration: {
- pageTitle: "🪴 Quartz 4.0",
+ pageTitle: "Quartz 4",
+ pageTitleSuffix: "",
enableSPA: true,
enablePopovers: true,
analytics: {
@@ -18,7 +19,9 @@
baseUrl: "quartz.jzhao.xyz",
ignorePatterns: ["private", "templates", ".obsidian"],
defaultDateType: "created",
+ generateSocialImages: true,
theme: {
+ fontOrigin: "googleFonts",
cdnCaching: true,
typography: {
header: "Schibsted Grotesk",
@@ -35,6 +38,7 @@
secondary: "#284b63",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
+ textHighlight: "#fff23688",
},
darkMode: {
light: "#161618",
@@ -45,6 +49,7 @@
secondary: "#7b97aa",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
+ textHighlight: "#b3aa0288",
},
},
},
@@ -55,8 +60,6 @@
Plugin.CreatedModifiedDate({
priority: ["frontmatter", "filesystem"],
}),
- Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
- Plugin.Latex({ renderEngine: "katex" }),
Plugin.SyntaxHighlighting({
theme: {
light: "github-light",
@@ -64,15 +67,17 @@
},
keepBackground: false,
}),
+ Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
Plugin.GitHubFlavoredMarkdown(),
Plugin.TableOfContents(),
Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
Plugin.Description(),
+ Plugin.Latex({ renderEngine: "katex" }),
],
filters: [Plugin.RemoveDrafts()],
emitters: [
Plugin.AliasRedirects(),
- Plugin.ComponentResources({ fontOrigin: "googleFonts" }),
+ Plugin.ComponentResources(),
Plugin.ContentPage(),
Plugin.FolderPage(),
Plugin.TagPage(),
--
Gitblit v1.10.0