-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquartz.config.ts
More file actions
111 lines (109 loc) · 2.83 KB
/
Copy pathquartz.config.ts
File metadata and controls
111 lines (109 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import { QuartzConfig } from "./quartz/cfg"
import * as Plugin from "./quartz/plugins"
const config: QuartzConfig = {
configuration: {
pageTitle: "Parameter Golf Research Garden",
pageTitleSuffix: "",
enableSPA: true,
enablePopovers: true,
analytics: null,
locale: "en-US",
baseUrl: "golf.agustif.com",
ignorePatterns: ["private", "templates", ".obsidian"],
defaultDateType: "modified",
theme: {
fontOrigin: "googleFonts",
cdnCaching: true,
typography: {
title: "IBM Plex Sans Condensed",
header: "IBM Plex Sans Condensed",
body: "IBM Plex Sans",
code: "IBM Plex Mono",
},
colors: {
lightMode: {
light: "#f3f0e6",
lightgray: "#d8d2c1",
gray: "#7d7767",
darkgray: "#4d483c",
dark: "#1d1b16",
secondary: "#617a50",
tertiary: "#8f7e4d",
highlight: "rgba(97, 122, 80, 0.08)",
textHighlight: "#d8cfaa88",
},
darkMode: {
light: "#121410",
lightgray: "#272d24",
gray: "#88907f",
darkgray: "#c6cdc1",
dark: "#edf1e8",
secondary: "#89a978",
tertiary: "#b7a56c",
highlight: "rgba(137, 169, 120, 0.10)",
textHighlight: "#39412d88",
},
},
},
},
plugins: {
transformers: [
Plugin.FrontMatter(),
Plugin.CreatedModifiedDate({
priority: ["frontmatter", "git", "filesystem"],
}),
Plugin.SyntaxHighlighting({
theme: {
light: "github-light",
dark: "github-dark",
},
keepBackground: false,
}),
Plugin.ObsidianFlavoredMarkdown({
enableInHtmlEmbed: false,
enableCheckbox: true,
}),
Plugin.GitHubFlavoredMarkdown({
enableSmartyPants: true,
linkHeadings: true,
}),
Plugin.TableOfContents({
maxDepth: 4,
collapseByDefault: false,
}),
Plugin.CrawlLinks({
markdownLinkResolution: "shortest",
lazyLoad: true,
openLinksInNewTab: true,
externalLinkIcon: true,
}),
Plugin.Description({
descriptionLength: 220,
}),
Plugin.Latex({ renderEngine: "katex" }),
Plugin.Citations({
bibliographyFile: "./content/citations.bib",
linkCitations: true,
}),
],
filters: [Plugin.RemoveDrafts()],
emitters: [
Plugin.AliasRedirects(),
Plugin.ComponentResources(),
Plugin.ContentPage(),
Plugin.FolderPage(),
Plugin.TagPage(),
Plugin.ContentIndex({
enableSiteMap: true,
enableRSS: true,
rssLimit: 30,
}),
Plugin.Assets(),
Plugin.Static(),
Plugin.Favicon(),
Plugin.NotFoundPage(),
Plugin.CustomOgImages(),
],
},
}
export default config