Initial config
This commit is contained in:
parent
f8e4ea1d63
commit
580212ad9b
1 changed files with 6 additions and 4 deletions
|
@ -8,7 +8,7 @@ import * as Plugin from "./quartz/plugins"
|
||||||
*/
|
*/
|
||||||
const config: QuartzConfig = {
|
const config: QuartzConfig = {
|
||||||
configuration: {
|
configuration: {
|
||||||
pageTitle: "🪴 Quartz 4.0",
|
pageTitle: "Fateforge",
|
||||||
enableSPA: true,
|
enableSPA: true,
|
||||||
enablePopovers: true,
|
enablePopovers: true,
|
||||||
analytics: {
|
analytics: {
|
||||||
|
@ -17,11 +17,11 @@ const config: QuartzConfig = {
|
||||||
locale: "en-US",
|
locale: "en-US",
|
||||||
baseUrl: "quartz.jzhao.xyz",
|
baseUrl: "quartz.jzhao.xyz",
|
||||||
ignorePatterns: ["private", "templates", ".obsidian"],
|
ignorePatterns: ["private", "templates", ".obsidian"],
|
||||||
defaultDateType: "created",
|
defaultDateType: "modified",
|
||||||
theme: {
|
theme: {
|
||||||
cdnCaching: true,
|
cdnCaching: true,
|
||||||
typography: {
|
typography: {
|
||||||
header: "Schibsted Grotesk",
|
header: "Quintessential",
|
||||||
body: "Source Sans Pro",
|
body: "Source Sans Pro",
|
||||||
code: "IBM Plex Mono",
|
code: "IBM Plex Mono",
|
||||||
},
|
},
|
||||||
|
@ -53,7 +53,9 @@ const config: QuartzConfig = {
|
||||||
transformers: [
|
transformers: [
|
||||||
Plugin.FrontMatter(),
|
Plugin.FrontMatter(),
|
||||||
Plugin.CreatedModifiedDate({
|
Plugin.CreatedModifiedDate({
|
||||||
priority: ["frontmatter", "filesystem"],
|
// 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", "git"],
|
||||||
}),
|
}),
|
||||||
Plugin.Latex({ renderEngine: "katex" }),
|
Plugin.Latex({ renderEngine: "katex" }),
|
||||||
Plugin.SyntaxHighlighting({
|
Plugin.SyntaxHighlighting({
|
||||||
|
|
Loading…
Reference in a new issue