From ab80eba7941eb7dbf4944ec63d52e1bfc7925ddc Mon Sep 17 00:00:00 2001
From: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
Date: Sat, 10 Feb 2024 22:19:17 +0000
Subject: [PATCH] chore(callouts): remove unnecessary whitespaces after class name (#833)
---
quartz.config.ts | 16 ++++++++++------
1 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/quartz.config.ts b/quartz.config.ts
index 0f6d256..4e36e94 100644
--- a/quartz.config.ts
+++ b/quartz.config.ts
@@ -9,10 +9,12 @@
analytics: {
provider: "plausible",
},
+ locale: "en-US",
baseUrl: "quartz.jzhao.xyz",
ignorePatterns: ["private", "templates", ".obsidian"],
defaultDateType: "created",
theme: {
+ cdnCaching: true,
typography: {
header: "Schibsted Grotesk",
body: "Source Sans Pro",
@@ -45,15 +47,17 @@
plugins: {
transformers: [
Plugin.FrontMatter(),
- Plugin.TableOfContents(),
Plugin.CreatedModifiedDate({
- priority: ["frontmatter", "filesystem"], // you can add 'git' here for last modified from Git but this makes the build slower
+ // you can add 'git' here for last modified from Git
+ // if you do rely on git for dates, ensure defaultDateType is 'modified'
+ priority: ["frontmatter", "filesystem"],
}),
- Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
- Plugin.SyntaxHighlighting(),
- Plugin.GitHubFlavoredMarkdown(),
- Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
Plugin.Latex({ renderEngine: "katex" }),
+ Plugin.SyntaxHighlighting(),
+ Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
+ Plugin.GitHubFlavoredMarkdown(),
+ Plugin.TableOfContents(),
+ Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
Plugin.Description(),
],
filters: [Plugin.RemoveDrafts()],
--
Gitblit v1.10.0