rizaldy.club/quartz.config.ts

95 lines
2.4 KiB
TypeScript
Raw Normal View History

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
docs: update plugin documentation (#888) * docs: first few plugins documented * docs: move plugin info * docs: move plugin docs to tag based system * docs: update latex example code snippet * docs: fix spelling of latex in title * docs: add missing linebreak * docs: remove plugin tag from feature pages * docs: shorten titles * docs: refine wording * docs: move plugin details for frontmatter * docs: add features/* tags * docs: update latex example * docs: make references more explicit * docs: add stubs for the remaining plugins * docs: more descriptions * docs: fix feature tags * docs: descriptions * docs: new plugin pages * docs: update configuration page * docs: more plugin work * docs: run prettier * docs: remove comments in config file and add link to docs * docs: minor fixes * docs: run prettier * docs: spelling * docs: update docs/plugins/AliasRedirects.md Co-authored-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> * docs: update docs/plugins/Assets.md Co-authored-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> * docs: update docs/plugins/CNAME.md Co-authored-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> * docs: update docs/plugins/Static.md Co-authored-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> * docs: update docs * docs: update docs/features/Mermaid diagrams.md Co-authored-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> * docs: update docs/plugins/RemoveDrafts.md Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * docs: update docs/plugins/Assets.md Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * docs: update docs/configuration.md Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * docs: update docs/configuration.md Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * docs: update docs/configuration.md Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * docs: some updates * docs: work in review comments --------- Signed-off-by: Eiko Wagenknecht <git@eiko-wagenknecht.de> Co-authored-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
2024-02-24 03:07:53 +07:00
/**
* Quartz 4.0 Configuration
*
* See https://quartz.jzhao.xyz/configuration for more information.
*/
2023-07-26 13:37:24 +07:00
const config: QuartzConfig = {
configuration: {
2024-03-02 02:47:05 +07:00
pageTitle: "🌲 rizaldy.club",
2023-07-26 13:37:24 +07:00
enableSPA: true,
enablePopovers: true,
analytics: {
2024-03-02 02:47:05 +07:00
provider: "umami",
host: "https://u.rizaldy.club",
websiteId: "638bda2c-2261-4b1f-bb55-c494d87bfb7d"
2023-07-10 09:32:24 +07:00
},
locale: "en-US",
2024-03-02 02:47:05 +07:00
baseUrl: "rizaldy.club",
ignorePatterns: ["private", "templates", ".obsidian"],
2023-08-24 22:56:40 +07:00
defaultDateType: "created",
2023-07-26 13:37:24 +07:00
theme: {
2024-03-02 02:47:05 +07:00
cdnCaching: false,
2023-07-26 13:37:24 +07:00
typography: {
2024-03-02 02:47:05 +07:00
header: "Space Grotesk",
body: "Atkinson Hyperlegible",
code: "JetBrains Mono",
2023-07-10 09:32:24 +07:00
},
2023-07-26 13:37:24 +07:00
colors: {
lightMode: {
2024-03-02 02:47:05 +07:00
light: "#000000",
lightgray: "#393639",
gray: "#646464",
darkgray: "#a1a1a6",
dark: "#ebebec",
secondary:"#f5f5f7",
tertiary: "#a1a1a1",
2023-07-26 13:37:24 +07:00
highlight: "rgba(143, 159, 169, 0.15)",
},
darkMode: {
light: "#161618",
lightgray: "#393639",
gray: "#646464",
darkgray: "#d4d4d4",
dark: "#ebebec",
2024-03-02 02:47:05 +07:00
secondary:"#ffffff",
tertiary: "#ffffff",
2023-07-26 13:37:24 +07:00
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: [
Plugin.FrontMatter(),
Plugin.CreatedModifiedDate({
2024-01-08 06:39:29 +07:00
priority: ["frontmatter", "filesystem"],
}),
Plugin.SyntaxHighlighting({
theme: {
light: "github-light",
dark: "github-dark",
},
keepBackground: false,
}),
Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
2023-06-20 10:37:45 +07:00
Plugin.GitHubFlavoredMarkdown(),
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(),
2024-04-06 20:57:25 +07:00
Plugin.ContentIndex({
rssFullHtml: true
}),
2023-07-26 13:37:24 +07:00
Plugin.FolderPage(),
Plugin.TagPage(),
2023-07-02 03:35:27 +07:00
Plugin.ContentIndex({
enableSiteMap: true,
enableRSS: true,
}),
Plugin.Assets(),
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