From 60017164ad5841e3e88fbdb7d16ccc40577336df Mon Sep 17 00:00:00 2001 From: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Date: Sun, 7 Jan 2024 14:35:52 -0500 Subject: [PATCH 1/3] =?UTF-8?q?chore:=20add=20my=20garden=20=F0=9F=98=83?= =?UTF-8?q?=20(#672)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/showcase.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/showcase.md b/docs/showcase.md index 2cd56b306..5b3a5a53e 100644 --- a/docs/showcase.md +++ b/docs/showcase.md @@ -22,5 +22,6 @@ Want to see what Quartz can do? Here are some cool community gardens: - [Mau Camargo's Notkesto](https://notes.camargomau.com/) - [Caicai's Novels](https://imoko.cc/blog/caicai/) - [🌊 Collapsed Wave](https://collapsedwave.com/) +- [Aaron Pham's Garden)(https://aarnphm.xyz/) If you want to see your own on here, submit a [Pull Request adding yourself to this file](https://github.com/jackyzha0/quartz/blob/v4/docs/showcase.md)! From a4d6f701bfbe72039d61e14f30155e283544e804 Mon Sep 17 00:00:00 2001 From: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Date: Sun, 7 Jan 2024 14:47:53 -0500 Subject: [PATCH 2/3] fix(showcase): markdown link (#673) --- docs/showcase.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/showcase.md b/docs/showcase.md index 5b3a5a53e..ca5737b78 100644 --- a/docs/showcase.md +++ b/docs/showcase.md @@ -22,6 +22,6 @@ Want to see what Quartz can do? Here are some cool community gardens: - [Mau Camargo's Notkesto](https://notes.camargomau.com/) - [Caicai's Novels](https://imoko.cc/blog/caicai/) - [🌊 Collapsed Wave](https://collapsedwave.com/) -- [Aaron Pham's Garden)(https://aarnphm.xyz/) +- [Aaron Pham's Garden](https://aarnphm.xyz/) If you want to see your own on here, submit a [Pull Request adding yourself to this file](https://github.com/jackyzha0/quartz/blob/v4/docs/showcase.md)! From 1a8aedf5f5401d365faf479644723d946c184054 Mon Sep 17 00:00:00 2001 From: Jacky Zhao Date: Sun, 7 Jan 2024 15:39:29 -0800 Subject: [PATCH 3/3] docs: clarify git only sets modified --- quartz.config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/quartz.config.ts b/quartz.config.ts index 5c2c411bf..1f7399a88 100644 --- a/quartz.config.ts +++ b/quartz.config.ts @@ -47,7 +47,9 @@ const config: QuartzConfig = { Plugin.FrontMatter(), Plugin.TableOfContents(), Plugin.CreatedModifiedDate({ - priority: ["frontmatter", "filesystem"], // you can add 'git' here for last modified from Git but this makes the build slower + // 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"], }), Plugin.Latex({ renderEngine: "katex" }), Plugin.SyntaxHighlighting(),