From 74fe4d6813dfce9760464141410b683bd8964d45 Mon Sep 17 00:00:00 2001 From: Daniel Lazaro Date: Sat, 18 Mar 2023 12:20:56 -0400 Subject: [PATCH 1/5] docs: Update link to callouts documentation (#300) --- content/notes/callouts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/notes/callouts.md b/content/notes/callouts.md index 74b837d61..a9b2104e5 100644 --- a/content/notes/callouts.md +++ b/content/notes/callouts.md @@ -10,7 +10,7 @@ This includes - 12 Distinct callout types (each with several aliases) - Collapsable callouts -See [documentation on supported types and syntax here](https://help.obsidian.md/How+to/Use+callouts#Types). +See [documentation on supported types and syntax here](https://help.obsidian.md/Editing+and+formatting/Callouts). ## Showcase From b7c305e0024ca78c1d9f9d7a5107ffc124c56ab1 Mon Sep 17 00:00:00 2001 From: Mike Walton Date: Wed, 22 Mar 2023 22:56:20 -0700 Subject: [PATCH 2/5] adding myself to the showcase (#301) --- content/notes/showcase.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/notes/showcase.md b/content/notes/showcase.md index bc8c4d2fd..bd405af63 100644 --- a/content/notes/showcase.md +++ b/content/notes/showcase.md @@ -18,5 +18,6 @@ Want to see what Quartz can do? Here are some cool community gardens :) - [oldwinterの数字花园](https://garden.oldwinter.top/) - [SethMB Work](https://sethmb.xyz/) - [Abhijeet's Math Wiki](https://abhmul.github.io/quartz/Math-Wiki/) +- [Mike's AI Garden 🤖🪴](https://mwalton.me/) If you want to see your own on here, submit a [Pull Request adding yourself to this file](https://github.com/jackyzha0/quartz/blob/hugo/content/notes/showcase.md)! From db27557aa307921cf035b7f62d9d9f2b452b1018 Mon Sep 17 00:00:00 2001 From: Md Jawad Noor Asif Date: Thu, 30 Mar 2023 17:14:06 +0600 Subject: [PATCH 3/5] fix: search highlight not showing because for trailing slash (#306) --- assets/js/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/util.js b/assets/js/util.js index 530bd7dc0..bd434c733 100644 --- a/assets/js/util.js +++ b/assets/js/util.js @@ -117,7 +117,7 @@ const resultToHTML = ({ url, title, content }) => { const redir = (id, term) => { const shouldTrim = PRODUCTION && SEARCH_ENABLED const baseURLPrefix = shouldTrim ? "" : BASE_URL.replace(/\/$/g, "") - const urlString = `${baseURLPrefix}${id}#:~:text=${encodeURIComponent(term)}/` + const urlString = `${baseURLPrefix}${id}#:~:text=${encodeURIComponent(term)}` window.Million.navigate( new URL(urlString), ".singlePage", From ba7a968881083b9d3b3b6ecd65df076e76bcb164 Mon Sep 17 00:00:00 2001 From: Mattia Ippoliti Date: Sat, 1 Apr 2023 22:50:08 +0200 Subject: [PATCH 4/5] fix: padding for empty title callouts (#308) --- assets/styles/_callouts.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/styles/_callouts.scss b/assets/styles/_callouts.scss index 04fd2f662..e1650fc87 100644 --- a/assets/styles/_callouts.scss +++ b/assets/styles/_callouts.scss @@ -114,6 +114,10 @@ blockquote[class*="-callout"] > p:first-child { } } +blockquote[class*="-callout"] > p:empty { + padding: 1.2em 35px; +} + $summary: summary, abstract, tldr; $bug: bug; $danger: danger, error; From e482fa10970fd6a0c1c0ec836db84ba4187bc8f7 Mon Sep 17 00:00:00 2001 From: Jacky Zhao Date: Thu, 6 Apr 2023 15:06:01 -0700 Subject: [PATCH 5/5] fix: graph and tooltip sometimes not showing --- layouts/partials/graph.html | 1 - layouts/partials/head.html | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/layouts/partials/graph.html b/layouts/partials/graph.html index 39ed3cfa5..3e25c6579 100644 --- a/layouts/partials/graph.html +++ b/layouts/partials/graph.html @@ -1,5 +1,4 @@ {{ $popover := resources.Get "js/popover.js" | resources.Fingerprint "md5" | resources.Minify }} - + {{ if $data.enableCodeBlockTitle | default $.Site.Data.config.enableCallouts }}