From 4e2aea8a5a414b3bcfac0168bea4f6afd032e8f5 Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 26 Aug 2024 21:12:45 +0000
Subject: [PATCH] chore(deps): bump @napi-rs/simple-git from 0.1.17 to 0.1.19 (#1376)
---
quartz.config.ts | 26 +++++++++++++++++++++-----
1 files changed, 21 insertions(+), 5 deletions(-)
diff --git a/quartz.config.ts b/quartz.config.ts
index 8674bc6..b6abbb2 100644
--- a/quartz.config.ts
+++ b/quartz.config.ts
@@ -1,6 +1,11 @@
import { QuartzConfig } from "./quartz/cfg"
import * as Plugin from "./quartz/plugins"
+/**
+ * Quartz 4.0 Configuration
+ *
+ * See https://quartz.jzhao.xyz/configuration for more information.
+ */
const config: QuartzConfig = {
configuration: {
pageTitle: "🪴 Quartz 4.0",
@@ -9,10 +14,13 @@
analytics: {
provider: "plausible",
},
+ locale: "en-US",
baseUrl: "quartz.jzhao.xyz",
ignorePatterns: ["private", "templates", ".obsidian"],
defaultDateType: "created",
theme: {
+ fontOrigin: "googleFonts",
+ cdnCaching: true,
typography: {
header: "Schibsted Grotesk",
body: "Source Sans Pro",
@@ -28,6 +36,7 @@
secondary: "#284b63",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
+ textHighlight: "#fff23688",
},
darkMode: {
light: "#161618",
@@ -38,6 +47,7 @@
secondary: "#7b97aa",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
+ textHighlight: "#b3aa0288",
},
},
},
@@ -45,21 +55,27 @@
plugins: {
transformers: [
Plugin.FrontMatter(),
- Plugin.TableOfContents(),
Plugin.CreatedModifiedDate({
- priority: ["frontmatter", "git", "filesystem"],
+ priority: ["frontmatter", "filesystem"],
}),
- Plugin.SyntaxHighlighting(),
+ Plugin.SyntaxHighlighting({
+ theme: {
+ light: "github-light",
+ dark: "github-dark",
+ },
+ keepBackground: false,
+ }),
Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
Plugin.GitHubFlavoredMarkdown(),
+ Plugin.TableOfContents(),
Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
- Plugin.Latex({ renderEngine: "katex" }),
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