From fa69c2a5656254251b74dbd5545bef000f67af2f Mon Sep 17 00:00:00 2001
From: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu, 21 Sep 2023 17:35:11 +0000
Subject: [PATCH] fix(explorer): increase consistency, explicitly use font-family (#496)
---
quartz.config.ts | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/quartz.config.ts b/quartz.config.ts
index 83b59e6..f677a18 100644
--- a/quartz.config.ts
+++ b/quartz.config.ts
@@ -10,7 +10,8 @@
provider: "plausible",
},
baseUrl: "quartz.jzhao.xyz",
- ignorePatterns: ["private", "templates"],
+ ignorePatterns: ["private", "templates", ".obsidian"],
+ defaultDateType: "created",
theme: {
typography: {
header: "Schibsted Grotesk",
@@ -49,7 +50,7 @@
priority: ["frontmatter", "filesystem"], // you can add 'git' here for last modified from Git but this makes the build slower
}),
Plugin.SyntaxHighlighting(),
- Plugin.ObsidianFlavoredMarkdown(),
+ Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
Plugin.GitHubFlavoredMarkdown(),
Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
Plugin.Latex({ renderEngine: "katex" }),
@@ -66,8 +67,9 @@
enableSiteMap: true,
enableRSS: true,
}),
- Plugin.Assets({ attachmentsFolder: "attachments" }),
+ Plugin.Assets(),
Plugin.Static(),
+ Plugin.NotFoundPage(),
],
},
}
--
Gitblit v1.10.0