Skip to content

Commit 311db47

Browse files
committed
Quartz sync: May 19, 2025, 2:05 PM
1 parent 43f27b7 commit 311db47

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ tags:
66
- cs
77
- algorithm
88
- sql
9+
- moc
910
priority:
1011
- ★★★
1112
status:

content/Computer Science/7 Applications Development/Frontend/- Frontend.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ created: 2025/4/28 16:51:53
33
modified: 2025/5/09 17:58:04
44
status:
55
- 🗺️
6+
tags:
7+
- moc
68
---
79
# Index
810
- [[Closure]]

content/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ comments: "false"
1111
-->
1212
![[Lqp2z3I.gif]]
1313

14-
# MOC
14+
# MOC
1515
- [[About|About]]
1616
- [[- Computer Science]]
1717
- [[- Algorithms]]
1818
- [[- Frontend]]
1919
- [[- Note Taking]]
2020
- [[- Philosophy]]
21+
- #moc
2122

2223
# Basic Guide
2324
- prefix of `🗺️`

content/z-index/- Guideline.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
22
description:
33
created: 2023-12-01
4-
modified: 2025-05-18
4+
modified: 2025-05-19
55
status:
66
- 🗺️
77
tags:
88
- guideline
9-
- moc
109
title: "- Guideline"
1110
comments: "false"
1211
draft: "false"
@@ -76,7 +75,7 @@ draft: "false"
7675
- Arguments / Conclusion notes #stage/arguments
7776
- 의견을 조합하여, 주장이나 논리를 전개한 노트
7877
- 5W1H 로 작성
79-
- MOC notes #moc
78+
- MOC notes `#moc`
8079
- 종합된 노트
8180
- 인덱스 정리
8281

quartz/plugins/transformers/frontmatter.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,15 @@ export const FrontMatter: QuartzTransformerPlugin<Partial<Options>> = (userOpts)
7777
} else {
7878
data.title = file.stem ?? i18n(cfg.configuration.locale).propertyDefaults.title
7979
}
80+
8081
if (data.title.startsWith("-")) {
8182
data.title = "🗺️ " + data.title
8283
}
84+
8385
const tags = coerceToArray(coalesceAliases(data, ["tags", "tag"]))
84-
if (tags) data.tags = [...new Set(tags.map((tag: string) => slugTag(tag)))]
86+
if (tags) {
87+
data.tags = [...new Set(tags.map((tag: string) => slugTag(tag)))]
88+
}
8589

8690
const aliases = coerceToArray(coalesceAliases(data, ["aliases", "alias"]))
8791
if (aliases) {

quartz/styles/custom.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,3 +143,7 @@ footer {
143143
.center a[data-slug*="/--"]::before {
144144
content: "🗺️ ";
145145
}
146+
147+
.search-container .preview-inner a[data-slug*="/--"]::before {
148+
content: "🗺️ ";
149+
}

0 commit comments

Comments
 (0)