From c5b9137f12ea372d9196e41ffffc91eee7ad772e Mon Sep 17 00:00:00 2001 From: Vince Imbat <96913392+vinceimbat@users.noreply.github.com> Date: Sat, 23 Sep 2023 10:39:02 +0800 Subject: [PATCH 1/4] docs: Adds Vince Imbat to showcase (#501) --- docs/showcase.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/showcase.md b/docs/showcase.md index 9d84a0633..f3f14e207 100644 --- a/docs/showcase.md +++ b/docs/showcase.md @@ -17,5 +17,6 @@ Want to see what Quartz can do? Here are some cool community gardens: - [Mike's AI Garden 🤖🪴](https://mwalton.me/) - [Matt Dunn's Second Brain](https://mattdunn.info/) - [Pelayo Arbues' Notes](https://pelayoarbues.github.io/) +- [Vince Imbat's Talahardin](https://vinceimbat.com/) 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 95eec5b49db53801e23b4b47778cb0b6153db83f Mon Sep 17 00:00:00 2001 From: Chad Lee Date: Sun, 24 Sep 2023 12:27:42 -0500 Subject: [PATCH 2/4] add site to showcase (#504) --- docs/showcase.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/showcase.md b/docs/showcase.md index f3f14e207..7dbc6e99b 100644 --- a/docs/showcase.md +++ b/docs/showcase.md @@ -18,5 +18,6 @@ Want to see what Quartz can do? Here are some cool community gardens: - [Matt Dunn's Second Brain](https://mattdunn.info/) - [Pelayo Arbues' Notes](https://pelayoarbues.github.io/) - [Vince Imbat's Talahardin](https://vinceimbat.com/) +- [🧠🌳 Chad's Mind Garden](https://www.chadly.net/) 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 ea5742c328c97a20f7add4994aa7e443fc6f7f39 Mon Sep 17 00:00:00 2001 From: Jacky Zhao Date: Sun, 24 Sep 2023 10:31:47 -0700 Subject: [PATCH 3/4] fix: mermaid copy source position --- quartz/styles/base.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/quartz/styles/base.scss b/quartz/styles/base.scss index 9d553622d..4aff2419a 100644 --- a/quartz/styles/base.scss +++ b/quartz/styles/base.scss @@ -328,6 +328,7 @@ pre { &:has(> code.mermaid) { border: none; + position: relative; } & > code { From 697bffdb8b1bef143823f77a118de90286fe325a Mon Sep 17 00:00:00 2001 From: Jacky Zhao Date: Sun, 24 Sep 2023 14:47:30 -0700 Subject: [PATCH 4/4] fix: treat the 0 time as invalid too --- quartz/plugins/transformers/lastmod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quartz/plugins/transformers/lastmod.ts b/quartz/plugins/transformers/lastmod.ts index 7deeefb0d..feca4b52f 100644 --- a/quartz/plugins/transformers/lastmod.ts +++ b/quartz/plugins/transformers/lastmod.ts @@ -14,7 +14,7 @@ const defaultOptions: Options = { function coerceDate(fp: string, d: any): Date { const dt = new Date(d) - const invalidDate = isNaN(dt.getTime()) + const invalidDate = isNaN(dt.getTime()) || dt.getTime() === 0 if (invalidDate && d !== undefined) { console.log( chalk.yellow(