Skip to content

Commit bc246c6

Browse files
committed
Quartz sync: Jun 4, 2025, 12:04 PM
1 parent 28bd224 commit bc246c6

File tree

5 files changed

+19
-16
lines changed

5 files changed

+19
-16
lines changed

content/About.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description:
33
created: 2025-05-18
44
modified: 2025-05-18
55
title: About
6-
comments: "false"
6+
comments: "true"
77
---
88
- YongMan "Yòmá" Kim
99
- Specialized in Philosophy(Mind, Analytical)

content/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
aliases:
2+
aliases:
33
description: This blog is an excerpt from my Obsidian notes
44
title: Hello Again!
55
created: 2025-05-18
66
modified: 2025-06-04
7-
comments: "false"
7+
comments: "true"
88
---
99

1010
<!--

content/z-index/Guideline.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ status:
77
tags:
88
- guideline
99
title: "- Guideline"
10-
comments: "false"
10+
comments: "true"
1111
draft: "false"
1212
aliases:
1313
- "- Guideline"
14-
markmap: "colorFreezeLevel: 4"
14+
markmap:
15+
- "colorFreezeLevel: 4"
1516
---
1617

1718

quartz/components/PageTitle.tsx

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ import { classNames } from "../util/lang"
44
import { i18n } from "../i18n"
55

66
const PageTitle: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzComponentProps) => {
7-
const title = cfg?.pageTitle ?? i18n(cfg.locale).propertyDefaults.title
8-
const baseDir = pathToRoot(fileData.slug!)
9-
return (
10-
<a href={baseDir} class="page-header-link">
11-
<h2 class={classNames(displayClass, "page-title")}>
12-
{title}
13-
</h2>
14-
<img class="page-logo" src="https://avatars.githubusercontent.com/u/71107230?v=4" />
15-
</a>
16-
)
7+
const title = cfg?.pageTitle ?? i18n(cfg.locale).propertyDefaults.title
8+
const baseDir = pathToRoot(fileData.slug!)
9+
return (
10+
<a href={baseDir} class="page-header-link">
11+
<h2 class={classNames(displayClass, "page-title")}>
12+
{title}
13+
</h2>
14+
<img class="page-logo" src="https://avatars.githubusercontent.com/u/71107230?v=4" />
15+
</a>
16+
)
1717
}
1818

1919
PageTitle.css = `
@@ -43,8 +43,10 @@ PageTitle.css = `
4343
margin: 0;
4444
width: 1.6rem;
4545
height: 1.6rem;
46+
align-self: center;
4647
4748
@media (min-width: 1025px) {
49+
max-width: 200px;
4850
width: auto;
4951
height: auto;
5052
}

quartz/plugins/transformers/frontmatter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export const FrontMatter: QuartzTransformerPlugin<Partial<Options>> = (userOpts)
9292

9393
if (data.status == "🗺️") {
9494
data.title = "🗺️ " + data.title
95-
data.comments = false
95+
// data.comments = false
9696
}
9797

9898
if (data.permalink != null && data.permalink.toString() !== "") {

0 commit comments

Comments
 (0)