Skip to content

Commit 366adeb

Browse files
committed
Quartz sync: May 20, 2025, 10:09 PM
1 parent edb0352 commit 366adeb

File tree

13 files changed

+112
-77
lines changed

13 files changed

+112
-77
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ priority:
1212
status:
1313
- 🗺️
1414
title: "- Algorithms"
15+
aliases:
16+
- "- Algorithms"
1517
---
1618

17-
# Index
1819
- [[PS Site]]
1920
- [[Tips]]
2021
- [[Terms]]

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ tags:
66
- moc
77
status:
88
- 🗺️
9+
title: "- PS"
10+
aliases:
11+
- "- PS"
912
---
1013

11-
# Index
12-
## BOJ
14+
# BOJ
1315
- #ps/boj/bronze
1416
- #ps/boj/silver
1517
- #ps/boj/gold

content/Computer Science/7 Applications Development/Frontend/- Frontend.md renamed to content/Computer Science/7 Applications Development/Frontend/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ status:
55
- 🗺️
66
tags:
77
- moc
8+
title: "- Frontend"
9+
aliases:
10+
- "- Frontend"
811
---
9-
# Index
1012
- [[Closure]]
1113
- [[Composition]]
1214
- [[css selectors]]

content/Computer Science/- Computer Science.md renamed to content/Computer Science/index.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
---
2-
description:
2+
description:
33
created: 2025-05-18
4-
modified: 2025-05-18
4+
modified: 2025-05-20
55
tags:
66
- moc
77
status:
88
- 🗺️
9+
title: "- Computer Science"
10+
aliases:
11+
- "- Computer Science"
912
---
1013

11-
# MOC
1214
- Foundations & Theory
1315
- Data Structures
1416
- [[- Algorithms]]
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
---
2-
description:
2+
description:
33
tags:
44
- moc
55
status:
66
- 🗺️
77
created: 2025-05-18
88
modified: 2025-05-18
9+
title: "- Note Taking"
10+
aliases:
11+
- "- Note Taking"
912
---
10-
# Index
1113
- [[내 노트 정리 방법|my workflow]]
1214
- [[ANTINET]]
1315
- [[markdown을 이용한 노트와 태스크 그리고 일정 관리]]

content/Philosophy/Philosophy of Mind/- Philosophy of Mind.md renamed to content/Philosophy/Philosophy of Mind/index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
---
2+
description:
3+
created: 2025-05-12
4+
modified: 2025-05-20
5+
aliases:
6+
- "- Philosophy of Mind"
7+
title: "- Philosophy of Mind"
8+
status:
9+
- 🗺️
10+
---
11+
112
- [The Computational Theory of Mind (Stanford Encyclopedia of Philosophy)](https://plato.stanford.edu/entries/computational-mind/)
213
- [Artificial Intelligence (Stanford Encyclopedia of Philosophy)](https://plato.stanford.edu/entries/artificial-intelligence/)
314
- [Cognitive Science (Stanford Encyclopedia of Philosophy)](https://plato.stanford.edu/entries/cognitive-science/#toc)
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
---
2-
description:
2+
description:
33
tags:
44
- moc
55
status:
66
- 🗺️
77
created: 2025-05-18
88
modified: 2025-05-18
9+
title: "- Philosophy"
10+
aliases:
11+
- "- Philosophy"
912
---
1013
# site
1114
- [Stanford Encyclopedia of Philosophy](https://plato.stanford.edu/)
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ tags:
99
title: "- Guideline"
1010
comments: "false"
1111
draft: "false"
12+
aliases:
13+
- "- Guideline"
1214
---
1315

1416

obsidian-content-sync.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ allow_path=(
1515

1616
output_path=(
1717
"Attachments/"
18-
"z-index/"
18+
"z-index/Guideline.md"
1919
"Computer Science/"
2020
"Note Taking/"
2121
"Philosophy/"
@@ -45,4 +45,9 @@ for ((i = 0; i < len; i++)); do
4545
--filter='- *' \
4646
"$basic_path${allow_path[$i]}" \
4747
"$pre_fix${output_path[$i]}"
48+
49+
find "$pre_fix${output_path[$i]}" -type f -name "- *.md" | while read file; do
50+
dir=$(dirname "$file")
51+
mv "$file" "$dir/index.md"
52+
done
4853
done

quartz.layout.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,12 @@ export const defaultContentPageLayout: PageLayout = {
9595

9696
// components for pages that display lists of pages (e.g. tags or folders)
9797
export const defaultListPageLayout: PageLayout = {
98-
beforeBody: [Component.Breadcrumbs(), Component.ArticleTitle(), Component.ContentMeta()],
98+
beforeBody: [
99+
Component.Breadcrumbs(),
100+
Component.ArticleTitle(),
101+
Component.ContentMeta(),
102+
Component.TagList()
103+
],
99104
left: [
100105
Component.PageTitle(),
101106
Component.MobileOnly(Component.Spacer()),
@@ -135,5 +140,8 @@ export const defaultListPageLayout: PageLayout = {
135140
}
136141
),
137142
],
138-
right: [],
143+
right: [
144+
Component.Graph(),
145+
Component.DesktopOnly(Component.TableOfContents()),
146+
],
139147
}

0 commit comments

Comments
 (0)