2023-07-26 13:37:24 +07:00
|
|
|
import { QuartzConfig } from "./quartz/cfg"
|
2023-06-10 13:06:02 +07:00
|
|
|
import * as Plugin from "./quartz/plugins"
|
2023-05-30 22:02:20 +07:00
|
|
|
|
2023-07-26 13:37:24 +07:00
|
|
|
const config: QuartzConfig = {
|
|
|
|
configuration: {
|
|
|
|
pageTitle: "🪴 Quartz 4.0",
|
|
|
|
enableSPA: true,
|
|
|
|
enablePopovers: true,
|
|
|
|
analytics: {
|
|
|
|
provider: "plausible",
|
2023-07-10 09:32:24 +07:00
|
|
|
},
|
2024-02-04 10:55:24 +07:00
|
|
|
locale: "en-US",
|
2023-08-20 14:54:13 +07:00
|
|
|
baseUrl: "quartz.jzhao.xyz",
|
2023-08-25 23:03:49 +07:00
|
|
|
ignorePatterns: ["private", "templates", ".obsidian"],
|
2023-08-24 22:56:40 +07:00
|
|
|
defaultDateType: "created",
|
2023-07-26 13:37:24 +07:00
|
|
|
theme: {
|
2024-02-08 14:52:55 +07:00
|
|
|
cdnCaching: true,
|
2023-07-26 13:37:24 +07:00
|
|
|
typography: {
|
|
|
|
header: "Schibsted Grotesk",
|
|
|
|
body: "Source Sans Pro",
|
|
|
|
code: "IBM Plex Mono",
|
2023-07-10 09:32:24 +07:00
|
|
|
},
|
2023-07-26 13:37:24 +07:00
|
|
|
colors: {
|
|
|
|
lightMode: {
|
|
|
|
light: "#faf8f8",
|
|
|
|
lightgray: "#e5e5e5",
|
|
|
|
gray: "#b8b8b8",
|
|
|
|
darkgray: "#4e4e4e",
|
|
|
|
dark: "#2b2b2b",
|
|
|
|
secondary: "#284b63",
|
|
|
|
tertiary: "#84a59d",
|
|
|
|
highlight: "rgba(143, 159, 169, 0.15)",
|
|
|
|
},
|
|
|
|
darkMode: {
|
|
|
|
light: "#161618",
|
|
|
|
lightgray: "#393639",
|
|
|
|
gray: "#646464",
|
|
|
|
darkgray: "#d4d4d4",
|
|
|
|
dark: "#ebebec",
|
|
|
|
secondary: "#7b97aa",
|
|
|
|
tertiary: "#84a59d",
|
|
|
|
highlight: "rgba(143, 159, 169, 0.15)",
|
|
|
|
},
|
2023-07-10 09:32:24 +07:00
|
|
|
},
|
2023-07-23 07:27:41 +07:00
|
|
|
},
|
|
|
|
},
|
2023-05-30 22:02:20 +07:00
|
|
|
plugins: {
|
|
|
|
transformers: [
|
2023-06-12 13:26:43 +07:00
|
|
|
Plugin.FrontMatter(),
|
|
|
|
Plugin.CreatedModifiedDate({
|
2024-01-08 06:39:29 +07:00
|
|
|
// 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"],
|
2023-06-01 04:01:23 +07:00
|
|
|
}),
|
2023-12-20 10:03:40 +07:00
|
|
|
Plugin.Latex({ renderEngine: "katex" }),
|
2024-02-18 01:23:45 +07:00
|
|
|
Plugin.SyntaxHighlighting({
|
|
|
|
// uses themes bundled with Shikiji, see https://shikiji.netlify.app/themes
|
|
|
|
theme: {
|
|
|
|
light: "github-light",
|
|
|
|
dark: "github-dark",
|
|
|
|
},
|
|
|
|
// set this to 'true' to use the background color of the Shikiji theme
|
|
|
|
// if set to 'false', will use Quartz theme colors for background
|
|
|
|
keepBackground: false,
|
|
|
|
}),
|
2023-12-20 02:01:55 +07:00
|
|
|
Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
|
2023-06-20 10:37:45 +07:00
|
|
|
Plugin.GitHubFlavoredMarkdown(),
|
2024-02-04 10:44:24 +07:00
|
|
|
Plugin.TableOfContents(),
|
2023-07-23 07:27:41 +07:00
|
|
|
Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
|
2023-06-20 10:37:45 +07:00
|
|
|
Plugin.Description(),
|
2023-05-30 22:02:20 +07:00
|
|
|
],
|
2023-07-23 07:27:41 +07:00
|
|
|
filters: [Plugin.RemoveDrafts()],
|
2023-05-30 22:02:20 +07:00
|
|
|
emitters: [
|
2023-06-17 09:41:59 +07:00
|
|
|
Plugin.AliasRedirects(),
|
2023-07-25 11:54:47 +07:00
|
|
|
Plugin.ComponentResources({ fontOrigin: "googleFonts" }),
|
2023-07-26 13:37:24 +07:00
|
|
|
Plugin.ContentPage(),
|
|
|
|
Plugin.FolderPage(),
|
|
|
|
Plugin.TagPage(),
|
2023-07-02 03:35:27 +07:00
|
|
|
Plugin.ContentIndex({
|
|
|
|
enableSiteMap: true,
|
|
|
|
enableRSS: true,
|
|
|
|
}),
|
2023-08-03 12:10:13 +07:00
|
|
|
Plugin.Assets(),
|
2023-07-24 07:07:19 +07:00
|
|
|
Plugin.Static(),
|
2023-09-07 11:02:21 +07:00
|
|
|
Plugin.NotFoundPage(),
|
2023-07-23 07:27:41 +07:00
|
|
|
],
|
2023-05-30 22:02:20 +07:00
|
|
|
},
|
2023-06-04 23:35:45 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
export default config
|