Skip to content

Commit 43f27b7

Browse files
committed
Quartz sync: May 19, 2025, 1:48 PM
1 parent 1542e1a commit 43f27b7

File tree

8 files changed

+26
-17
lines changed

8 files changed

+26
-17
lines changed

content/Computer Science/1 Foundations & Theory/Algorithms/- Algorithms.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ title: "- Algorithms"
1414
---
1515

1616
# Index
17-
- [[- Site]]
18-
- [[- Tips]]
19-
- [[- Terms]]
17+
- [[PS Site]]
18+
- [[Tips]]
19+
- [[Terms]]
2020
- [[Time Complexity]]
21+
- ---
2122
- [[Combination]]
2223
- [[Permutation]]
2324
- [[Subset]]

content/Computer Science/1 Foundations & Theory/Algorithms/- Site.md renamed to content/Computer Science/1 Foundations & Theory/Algorithms/PS Site.md

File renamed without changes.

content/Computer Science/1 Foundations & Theory/Algorithms/Prefix Sum Array.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ aliases:
66
- psum
77
---
88
- p_sum
9-
- using ![[- Terms#^f67ff6]]
9+
- using ![[Terms#^f67ff6]]
1010
- [[Imos Algorithm|imos]]

content/Computer Science/1 Foundations & Theory/Algorithms/- Terms.md renamed to content/Computer Science/1 Foundations & Theory/Algorithms/Terms.md

File renamed without changes.

content/Computer Science/1 Foundations & Theory/Algorithms/- Tips.md renamed to content/Computer Science/1 Foundations & Theory/Algorithms/Tips.md

File renamed without changes.

content/index.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description:
33
title: Hello Again!
44
created: 2025-05-18
5-
modified: 2025-05-18
5+
modified: 2025-05-19
66
comments: "false"
77
---
88

@@ -19,14 +19,18 @@ comments: "false"
1919
- [[- Note Taking]]
2020
- [[- Philosophy]]
2121

22-
# Basic Shortcut
23-
- Full-text search
24-
- `cmd / ctrl` + `k`
25-
- tag search
26-
- start with `#`
27-
- `cmd / ctrl` + `shift` + `k`
28-
- Graph view
29-
- `cmd / ctrl` + `g`
22+
# Basic Guide
23+
- prefix of `🗺️`
24+
- MOC file
25+
- Index file
26+
- Hotkeys
27+
- Full-text search
28+
- `cmd / ctrl` + `k`
29+
- tag search
30+
- start with `#`
31+
- `cmd / ctrl` + `shift` + `k`
32+
- Graph view
33+
- `cmd / ctrl` + `g`
3034

3135
# Markdown Guide
3236
- [[- Guideline]]

quartz/plugins/transformers/frontmatter.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ export const FrontMatter: QuartzTransformerPlugin<Partial<Options>> = (userOpts)
7373

7474
if (data.title != null && data.title.toString() !== "") {
7575
data.title = data.title.toString()
76-
if (data.title.startsWith("- ")) {
77-
data.title = "🗺️ " + data.title
78-
}
76+
7977
} else {
8078
data.title = file.stem ?? i18n(cfg.configuration.locale).propertyDefaults.title
8179
}
82-
80+
if (data.title.startsWith("-")) {
81+
data.title = "🗺️ " + data.title
82+
}
8383
const tags = coerceToArray(coalesceAliases(data, ["tags", "tag"]))
8484
if (tags) data.tags = [...new Set(tags.map((tag: string) => slugTag(tag)))]
8585

quartz/styles/custom.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,7 @@ footer {
139139
.page-footer {
140140
padding: 6rem 0;
141141
}
142+
143+
.center a[data-slug*="/--"]::before {
144+
content: "🗺️ ";
145+
}

0 commit comments

Comments
 (0)