Skip to content

Commit c757fab

Browse files
committed
Quartz sync: May 17, 2025, 11:07 AM
1 parent 2684ef5 commit c757fab

File tree

10 files changed

+323
-415
lines changed

10 files changed

+323
-415
lines changed

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 90 deletions
This file was deleted.

LICENSE.txt

Lines changed: 0 additions & 21 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<!--
44
npx quartz sync
5+
npx quartz build --serve
56
-->
67

78

content/index.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
---
2-
title: Welcome to Quartz
2+
title: Welcome to Yòmá's Notes
33
---
44

55
This is a blank Quartz installation.
6+
7+
hi
8+
69
See the [documentation](https://quartz.jzhao.xyz) for how to get started.
10+
11+
```cpp
12+
int main() {
13+
std::cout << "Hello, world!" << std::endl;
14+
return 0;
15+
}
16+
```

content/test/test folder.md

Whitespace-only changes.

quartz.config.ts

Lines changed: 82 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -7,91 +7,91 @@ import * as Plugin from "./quartz/plugins"
77
* See https://quartz.jzhao.xyz/configuration for more information.
88
*/
99
const config: QuartzConfig = {
10-
configuration: {
11-
pageTitle: "Quartz 4",
12-
pageTitleSuffix: "",
13-
enableSPA: true,
14-
enablePopovers: true,
15-
analytics: {
16-
provider: "plausible",
17-
},
18-
locale: "en-US",
19-
baseUrl: "quartz.jzhao.xyz",
20-
ignorePatterns: ["private", "templates", ".obsidian"],
21-
defaultDateType: "modified",
22-
theme: {
23-
fontOrigin: "googleFonts",
24-
cdnCaching: true,
25-
typography: {
26-
header: "Schibsted Grotesk",
27-
body: "Source Sans Pro",
28-
code: "IBM Plex Mono",
29-
},
30-
colors: {
31-
lightMode: {
32-
light: "#faf8f8",
33-
lightgray: "#e5e5e5",
34-
gray: "#b8b8b8",
35-
darkgray: "#4e4e4e",
36-
dark: "#2b2b2b",
37-
secondary: "#284b63",
38-
tertiary: "#84a59d",
39-
highlight: "rgba(143, 159, 169, 0.15)",
40-
textHighlight: "#fff23688",
41-
},
42-
darkMode: {
43-
light: "#161618",
44-
lightgray: "#393639",
45-
gray: "#646464",
46-
darkgray: "#d4d4d4",
47-
dark: "#ebebec",
48-
secondary: "#7b97aa",
49-
tertiary: "#84a59d",
50-
highlight: "rgba(143, 159, 169, 0.15)",
51-
textHighlight: "#b3aa0288",
10+
configuration: {
11+
pageTitle: "Yòmá's Notes",
12+
pageTitleSuffix: "",
13+
enableSPA: true,
14+
enablePopovers: true,
15+
analytics: {
16+
provider: "plausible",
5217
},
53-
},
54-
},
55-
},
56-
plugins: {
57-
transformers: [
58-
Plugin.FrontMatter(),
59-
Plugin.CreatedModifiedDate({
60-
priority: ["frontmatter", "git", "filesystem"],
61-
}),
62-
Plugin.SyntaxHighlighting({
18+
locale: "en-US",
19+
baseUrl: "yoma.kr",
20+
ignorePatterns: ["private", "templates", ".obsidian"],
21+
defaultDateType: "modified",
6322
theme: {
64-
light: "github-light",
65-
dark: "github-dark",
23+
fontOrigin: "googleFonts",
24+
cdnCaching: true,
25+
typography: {
26+
header: "Schibsted Grotesk",
27+
body: "Source Sans Pro",
28+
code: "JetBrains Mono",
29+
},
30+
colors: {
31+
lightMode: {
32+
light: "#faf8f8",
33+
lightgray: "#e5e5e5",
34+
gray: "#b8b8b8",
35+
darkgray: "#4e4e4e",
36+
dark: "#2b2b2b",
37+
secondary: "#284b63",
38+
tertiary: "#84a59d",
39+
highlight: "rgba(143, 159, 169, 0.15)",
40+
textHighlight: "#fff23688",
41+
},
42+
darkMode: {
43+
light: "#161618",
44+
lightgray: "#393639",
45+
gray: "#646464",
46+
darkgray: "#d4d4d4",
47+
dark: "#ebebec",
48+
secondary: "#7b97aa",
49+
tertiary: "#84a59d",
50+
highlight: "rgba(143, 159, 169, 0.15)",
51+
textHighlight: "#b3aa0288",
52+
},
53+
},
6654
},
67-
keepBackground: false,
68-
}),
69-
Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
70-
Plugin.GitHubFlavoredMarkdown(),
71-
Plugin.TableOfContents(),
72-
Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
73-
Plugin.Description(),
74-
Plugin.Latex({ renderEngine: "katex" }),
75-
],
76-
filters: [Plugin.RemoveDrafts()],
77-
emitters: [
78-
Plugin.AliasRedirects(),
79-
Plugin.ComponentResources(),
80-
Plugin.ContentPage(),
81-
Plugin.FolderPage(),
82-
Plugin.TagPage(),
83-
Plugin.ContentIndex({
84-
enableSiteMap: true,
85-
enableRSS: true,
86-
}),
87-
Plugin.Assets(),
88-
Plugin.Static(),
89-
Plugin.Favicon(),
90-
Plugin.NotFoundPage(),
91-
// Comment out CustomOgImages to speed up build time
92-
Plugin.CustomOgImages(),
93-
],
94-
},
55+
},
56+
plugins: {
57+
transformers: [
58+
Plugin.FrontMatter(),
59+
Plugin.CreatedModifiedDate({
60+
priority: ["frontmatter", "git", "filesystem"],
61+
}),
62+
Plugin.SyntaxHighlighting({
63+
theme: {
64+
light: "github-light",
65+
dark: "github-dark",
66+
},
67+
keepBackground: false,
68+
}),
69+
Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
70+
Plugin.GitHubFlavoredMarkdown(),
71+
Plugin.TableOfContents(),
72+
Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
73+
Plugin.Description(),
74+
Plugin.Latex({ renderEngine: "katex" }),
75+
],
76+
filters: [Plugin.RemoveDrafts()],
77+
emitters: [
78+
Plugin.AliasRedirects(),
79+
Plugin.ComponentResources(),
80+
Plugin.ContentPage(),
81+
Plugin.FolderPage(),
82+
Plugin.TagPage(),
83+
Plugin.ContentIndex({
84+
enableSiteMap: true,
85+
enableRSS: true,
86+
}),
87+
Plugin.Assets(),
88+
Plugin.Static(),
89+
Plugin.Favicon(),
90+
Plugin.NotFoundPage(),
91+
// Comment out CustomOgImages to speed up build time
92+
Plugin.CustomOgImages(),
93+
],
94+
},
9595
}
9696

9797
export default config

0 commit comments

Comments
 (0)