From 9acaa1c8ac8c8afd3fa08d3b1f58a60006fcfc6f Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri, 09 Aug 2024 01:19:45 +0000
Subject: [PATCH] feat: custom global latex macros (closes #1325)
---
quartz.config.ts | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/quartz.config.ts b/quartz.config.ts
index 4b98325..b6abbb2 100644
--- a/quartz.config.ts
+++ b/quartz.config.ts
@@ -36,6 +36,7 @@
secondary: "#284b63",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
+ textHighlight: "#fff23688",
},
darkMode: {
light: "#161618",
@@ -46,6 +47,7 @@
secondary: "#7b97aa",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
+ textHighlight: "#b3aa0288",
},
},
},
@@ -56,7 +58,6 @@
Plugin.CreatedModifiedDate({
priority: ["frontmatter", "filesystem"],
}),
- Plugin.Latex({ renderEngine: "katex" }),
Plugin.SyntaxHighlighting({
theme: {
light: "github-light",
@@ -69,6 +70,7 @@
Plugin.TableOfContents(),
Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
Plugin.Description(),
+ Plugin.Latex({ renderEngine: "katex" }),
],
filters: [Plugin.RemoveDrafts()],
emitters: [
--
Gitblit v1.10.0