quartz-research-note/quartz.config.ts

124 lines
3.2 KiB
TypeScript
Raw Normal View History

2023-07-10 02:32:24 +00:00
import { GlobalConfiguration, PageLayout, QuartzConfig } from "./quartz/cfg"
2023-06-10 06:06:02 +00:00
import * as Component from "./quartz/components"
import * as Plugin from "./quartz/plugins"
2023-05-30 15:02:20 +00:00
2023-07-10 02:32:24 +00:00
const generalConfiguration: GlobalConfiguration = {
pageTitle: "🪴 Quartz 4.0",
enableSPA: true,
enablePopovers: true,
analytics: {
2023-07-23 00:27:41 +00:00
provider: "plausible",
2023-07-10 02:32:24 +00:00
},
2023-07-13 07:19:35 +00:00
baseUrl: "quartz.jzhao.xyz",
2023-07-10 02:32:24 +00:00
ignorePatterns: ["private", "templates"],
theme: {
typography: {
header: "Schibsted Grotesk",
body: "Source Sans Pro",
code: "IBM Plex Mono",
},
colors: {
lightMode: {
2023-07-23 00:27:41 +00:00
light: "#faf8f8",
lightgray: "#e5e5e5",
gray: "#b8b8b8",
darkgray: "#4e4e4e",
dark: "#2b2b2b",
secondary: "#284b63",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
2023-07-10 02:32:24 +00:00
},
darkMode: {
2023-07-23 00:27:41 +00:00
light: "#161618",
lightgray: "#393639",
gray: "#646464",
darkgray: "#d4d4d4",
dark: "#ebebec",
secondary: "#7b97aa",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
2023-07-10 02:32:24 +00:00
},
2023-07-23 00:27:41 +00:00
},
},
2023-07-10 02:32:24 +00:00
}
2023-07-01 07:03:01 +00:00
const sharedPageComponents = {
head: Component.Head(),
2023-07-02 20:08:29 +00:00
header: [],
2023-07-01 07:03:01 +00:00
footer: Component.Footer({
links: {
2023-07-23 00:27:41 +00:00
GitHub: "https://github.com/jackyzha0/quartz",
"Discord Community": "https://discord.gg/cRFFHYye7t",
},
}),
2023-07-01 07:03:01 +00:00
}
const contentPageLayout: PageLayout = {
2023-07-23 00:27:41 +00:00
beforeBody: [Component.ArticleTitle(), Component.ReadingTime(), Component.TagList()],
2023-07-02 20:08:29 +00:00
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
2023-07-02 20:08:29 +00:00
Component.Search(),
Component.Darkmode(),
Component.DesktopOnly(Component.TableOfContents()),
2023-07-02 20:08:29 +00:00
],
2023-07-23 00:27:41 +00:00
right: [Component.Graph(), Component.Backlinks()],
2023-07-01 07:03:01 +00:00
}
const listPageLayout: PageLayout = {
2023-07-23 00:27:41 +00:00
beforeBody: [Component.ArticleTitle()],
2023-07-02 20:08:29 +00:00
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
2023-07-02 20:08:29 +00:00
Component.Search(),
2023-07-23 00:27:41 +00:00
Component.Darkmode(),
2023-07-02 20:08:29 +00:00
],
2023-07-01 07:03:01 +00:00
right: [],
}
2023-06-04 16:35:45 +00:00
const config: QuartzConfig = {
2023-07-10 02:32:24 +00:00
configuration: generalConfiguration,
2023-05-30 15:02:20 +00:00
plugins: {
transformers: [
Plugin.FrontMatter(),
2023-06-17 02:41:59 +00:00
Plugin.TableOfContents(),
Plugin.CreatedModifiedDate({
2023-07-23 00:27:41 +00:00
priority: ["frontmatter", "filesystem"], // you can add 'git' here for last modified from Git but this makes the build slower
}),
2023-07-10 02:32:24 +00:00
Plugin.SyntaxHighlighting(),
Plugin.ObsidianFlavoredMarkdown(),
2023-06-20 03:37:45 +00:00
Plugin.GitHubFlavoredMarkdown(),
2023-07-23 00:27:41 +00:00
Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
Plugin.Latex({ renderEngine: "katex" }),
2023-06-20 03:37:45 +00:00
Plugin.Description(),
2023-05-30 15:02:20 +00:00
],
2023-07-23 00:27:41 +00:00
filters: [Plugin.RemoveDrafts()],
2023-05-30 15:02:20 +00:00
emitters: [
2023-06-17 02:41:59 +00:00
Plugin.AliasRedirects(),
Plugin.ContentPage({
2023-07-01 07:03:01 +00:00
...sharedPageComponents,
...contentPageLayout,
pageBody: Component.Content(),
}),
2023-07-02 20:08:29 +00:00
Plugin.FolderPage({
2023-07-01 07:03:01 +00:00
...sharedPageComponents,
...listPageLayout,
2023-07-02 20:08:29 +00:00
pageBody: Component.FolderContent(),
2023-07-01 07:03:01 +00:00
}),
2023-07-02 20:08:29 +00:00
Plugin.TagPage({
2023-07-01 07:03:01 +00:00
...sharedPageComponents,
...listPageLayout,
2023-07-02 20:08:29 +00:00
pageBody: Component.TagContent(),
2023-06-17 02:41:59 +00:00
}),
2023-07-01 20:35:27 +00:00
Plugin.ContentIndex({
enableSiteMap: true,
enableRSS: true,
}),
Plugin.Assets(),
Plugin.Static(),
2023-07-23 00:27:41 +00:00
],
2023-05-30 15:02:20 +00:00
},
2023-06-04 16:35:45 +00:00
}
export default config