From c2bea8a4c4aeba440b8a7b043d7ece6343a9d263 Mon Sep 17 00:00:00 2001
From: derfalx <kschneider@falx.tech>
Date: Thu, 08 Jan 2026 01:30:42 +0000
Subject: [PATCH] fix(citation): Language parameter for non en-US settings (#2075)
---
quartz.config.ts | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/quartz.config.ts b/quartz.config.ts
index fa08723..b3db3d6 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: {
@@ -17,7 +18,7 @@
locale: "en-US",
baseUrl: "quartz.jzhao.xyz",
ignorePatterns: ["private", "templates", ".obsidian"],
- defaultDateType: "created",
+ defaultDateType: "modified",
theme: {
fontOrigin: "googleFonts",
cdnCaching: true,
@@ -36,6 +37,7 @@
secondary: "#284b63",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
+ textHighlight: "#fff23688",
},
darkMode: {
light: "#161618",
@@ -46,6 +48,7 @@
secondary: "#7b97aa",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
+ textHighlight: "#b3aa0288",
},
},
},
@@ -54,7 +57,7 @@
transformers: [
Plugin.FrontMatter(),
Plugin.CreatedModifiedDate({
- priority: ["frontmatter", "filesystem"],
+ priority: ["frontmatter", "git", "filesystem"],
}),
Plugin.SyntaxHighlighting({
theme: {
@@ -83,7 +86,10 @@
}),
Plugin.Assets(),
Plugin.Static(),
+ Plugin.Favicon(),
Plugin.NotFoundPage(),
+ // Comment out CustomOgImages to speed up build time
+ Plugin.CustomOgImages(),
],
},
}
--
Gitblit v1.10.0