From 6b69e2c3a09d3899f4153531b98e9bc3420deebd Mon Sep 17 00:00:00 2001 From: opfuchs Date: Sun, 31 Mar 2024 22:15:48 -0400 Subject: [PATCH] Quartz sync: Mar 31, 2024, 10:15 PM --- content/.gitkeep | 0 content/index.md | 6 ++++++ package-lock.json | 7 ++++--- package.json | 1 + quartz.config.ts | 14 ++++++-------- 5 files changed, 17 insertions(+), 11 deletions(-) delete mode 100644 content/.gitkeep create mode 100644 content/index.md diff --git a/content/.gitkeep b/content/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/content/index.md b/content/index.md new file mode 100644 index 00000000..2bdfd833 --- /dev/null +++ b/content/index.md @@ -0,0 +1,6 @@ +--- +title: Welcome to Quartz +--- + +This is a blank Quartz installation. +See the [documentation](https://quartz.jzhao.xyz) for how to get started. diff --git a/package-lock.json b/package-lock.json index b787090f..80425457 100644 --- a/package-lock.json +++ b/package-lock.json @@ -27,6 +27,7 @@ "hast-util-to-string": "^3.0.0", "is-absolute-url": "^4.0.1", "js-yaml": "^4.1.0", + "katex": "^0.16.10", "lightningcss": "^1.24.1", "mdast-util-find-and-replace": "^3.0.1", "mdast-util-to-hast": "^13.1.0", @@ -3198,9 +3199,9 @@ } }, "node_modules/katex": { - "version": "0.16.8", - "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.8.tgz", - "integrity": "sha512-ftuDnJbcbOckGY11OO+zg3OofESlbR5DRl2cmN8HeWeeFIV7wTXvAOx8kEjZjobhA+9wh2fbKeO6cdcA9Mnovg==", + "version": "0.16.10", + "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.10.tgz", + "integrity": "sha512-ZiqaC04tp2O5utMsl2TEZTXxa6WSC4yo0fv5ML++D3QZv/vx2Mct0mTlRx3O+uUkjfuAgOkzsCmq5MiUEsDDdA==", "funding": [ "https://opencollective.com/katex", "https://github.com/sponsors/katex" diff --git a/package.json b/package.json index adf60be2..b3c2dc12 100644 --- a/package.json +++ b/package.json @@ -52,6 +52,7 @@ "hast-util-to-string": "^3.0.0", "is-absolute-url": "^4.0.1", "js-yaml": "^4.1.0", + "katex": "^0.16.10", "lightningcss": "^1.24.1", "mdast-util-find-and-replace": "^3.0.1", "mdast-util-to-hast": "^13.1.0", diff --git a/quartz.config.ts b/quartz.config.ts index 4b98325d..d03a009c 100644 --- a/quartz.config.ts +++ b/quartz.config.ts @@ -8,14 +8,12 @@ import * as Plugin from "./quartz/plugins" */ const config: QuartzConfig = { configuration: { - pageTitle: "🪴 Quartz 4.0", + pageTitle: "🦊 Philo's Blog", enableSPA: true, enablePopovers: true, - analytics: { - provider: "plausible", - }, + analytics: null, locale: "en-US", - baseUrl: "quartz.jzhao.xyz", + baseUrl: "opfuchs.gay", ignorePatterns: ["private", "templates", ".obsidian"], defaultDateType: "created", theme: { @@ -43,9 +41,9 @@ const config: QuartzConfig = { gray: "#646464", darkgray: "#d4d4d4", dark: "#ebebec", - secondary: "#7b97aa", + secondary: "#ad61e0", tertiary: "#84a59d", - highlight: "rgba(143, 159, 169, 0.15)", + highlight: "#5b4965", }, }, }, @@ -60,7 +58,7 @@ const config: QuartzConfig = { Plugin.SyntaxHighlighting({ theme: { light: "github-light", - dark: "github-dark", + dark: "dracula", }, keepBackground: false, }),