Skip to content

Commit aa654a7

Browse files
committed
Quartz sync: May 17, 2025, 1:28 PM
1 parent 0a6e480 commit aa654a7

File tree

3 files changed

+200
-3
lines changed

3 files changed

+200
-3
lines changed

content/test/note.md

Lines changed: 198 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
1+
---
2+
title: Title of the page
3+
description: Description of the page used for link previews.
4+
permalink: "note.md"
5+
aliases: ["nnnn"]
6+
tags: ["tag1", "tag2"]
7+
draft: true
8+
date: 2025-05-01
9+
---
10+
11+
12+
``` frontmatter
13+
title: Title of the page
14+
description: Description of the page used for link previews.
15+
permalink: "note.md"
16+
aliases: ["nnnn"]
17+
tags: ["tag1", "tag2"]
18+
tags:
19+
-tag1
20+
-tag2
21+
draft: true
22+
date: 2025-05-01
23+
```
24+
# Callout
25+
> [!note]
26+
---
27+
> [!info]
28+
29+
> [!todo]
30+
---
31+
> [!abstract]
32+
33+
> [!summary]
34+
35+
> [!tldr]
36+
---
37+
> [!tip]
38+
39+
> [!hint]
40+
41+
> [!important]
42+
---
43+
> [!success]
44+
45+
> [!check]
46+
47+
> [!done]
48+
---
49+
> [!question]
50+
51+
> [!help]
52+
53+
> [!faq]
54+
---
55+
> [!warning]
56+
57+
> [!caution]
58+
59+
> [!attention]
60+
---
61+
> [!failure]
62+
63+
> [!fail]
64+
65+
> [!missing]
66+
---
67+
> [!danger]
68+
69+
> [!error]
70+
---
71+
> [!bug]
72+
---
73+
> [!example]
74+
---
75+
> [!quote]
76+
77+
> [!cite]
78+
79+
# AnuPpuccin task
80+
- [ ] `Unchecked` `- [ ]`
81+
- [x] `Checked` `- [x]`
82+
- [-] `Cancelled` `- [-]`
83+
- [>] `Rescheduled` `- [>]`
84+
- [<] `Scheduled` `- [<]`
85+
- [!] `Important` `- [!]`
86+
- [/] `In Progress` `- [/]`
87+
- [?] `Question` `- [?]`
88+
- [*] `Star` `- [*]`
89+
- [n] `Note` `- [n]`
90+
- [l] `Location` `- [l]`
91+
- [i] `Information` `- [i]`
92+
- [I] `Idea` `- [I]`
93+
- [S] `Amount` `- [S]`
94+
- [p] `Pro` `- [p]`
95+
- [c] `Con` `- [c]`
96+
- [b] `Bookmark` `- [b]`
97+
- ["] `Quote` `- ["]`
98+
- [0] `Speech bubble 0`
99+
- [1] `Speech bubble 1`
100+
- [2] `Speech bubble 2`
101+
- [3] `Speech bubble 3`
102+
- [4] `Speech bubble 4`
103+
- [5] `Speech bubble 5`
104+
- [6] `Speech bubble 6`
105+
- [7] `Speech bubble 7`
106+
- [8] `Speech bubble 8`
107+
- [9] `Speech bubble 9`
108+
109+
---
110+
111+
112+
113+
# This is a heading 1
114+
## This is a heading 2
115+
### This is a heading 3
116+
#### This is a heading 4
117+
##### This is a heading 5
118+
###### This is a heading 6
119+
120+
| Style | Syntax | Example | Output |
121+
| ---------------------- | ---------------------- | ---------------------------------------- | -------------------------------------- |
122+
| Bold | `** **` or `__ __` | `**Bold text**` | **Bold text** |
123+
| Italic | `* *` or `_ _` | `*Italic text*` | _Italic text_ |
124+
| Strikethrough | `~~ ~~` | `~~Striked out text~~` | ~~Striked out text~~ |
125+
| Highlight | *== ==* | *== Highlighted text ==* | ==Highlighted text== |
126+
| Bold and nested italic | `** **` and `_ _` | `**Bold text and _nested italic_ text**` | **Bold text and _nested italic_ text** |
127+
| Bold and italic | `*** ***` or `___ ___` | `***Bold and italic text***` | **_Bold and italic text_** |
128+
129+
> Quotes
130+
131+
132+
- Wikilink: `[[file]]` [[- Guideline]]
133+
- Markdown: `[name](file)`
134+
1. First list item
135+
1. Ordered nested list item
136+
2. Second list item
137+
- Unordered nested list item
138+
---
139+
- [ ] Task item 1
140+
- [ ] Subtask 1
141+
- [ ] Task item 2
142+
- [ ] Subtask 1
143+
144+
```
145+
***
146+
****
147+
* * *
148+
---
149+
----
150+
- - -
151+
___
152+
____
153+
_ _ _
154+
```
155+
---
156+
`inline code`
157+
158+
```cpp
159+
/* codeblock */
160+
161+
#include <iostream>
162+
163+
int main() {
164+
std::cout << "Hello World!";
165+
return 0;
166+
}
167+
```
168+
---
169+
This is a simple footnote[^1].[^1][^1]
170+
[^2]
171+
[^note]
172+
173+
```
174+
This is a simple footnote[^1].[^1][^1]
175+
[^2]
176+
[^note]
177+
178+
[^1]: This is the referenced text.
179+
[^2]: Add 2 spaces at the start of each new line.
180+
This lets you write footnotes that span multiple lines.
181+
[^note]: Named footnotes still appear as numbers, but can make it easier to identify and link references.
182+
```
183+
184+
You can also use inline footnotes. ^[This is an inline footnote.]
185+
```
186+
You can also use inline footnotes. ^[This is an inline footnote.]
187+
```
188+
189+
190+
191+
[^1]: This is the referenced text.
192+
193+
[^2]: Add 2 spaces at the start of each new line.
194+
This lets you write footnotes that span multiple lines.
195+
196+
[^note]: Named footnotes still appear as numbers, but can make it easier to identify and link references.
197+
198+

quartz/components/Footer.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ export default ((opts?: Options) => {
2222
</ul>
2323
<p>
2424
{/* {i18n(cfg.locale).components.footer.createdWith}{" "} */}
25-
Created by yoma © {year}
26-
{/* <a href="https://quartz.jzhao.xyz/" target="_blank">Quartz v{version}</a>© {year} */}
25+
Created by Yòmá with <a href="https://quartz.jzhao.xyz/" target="_blank">Quartz v{version}</a> © {year}
2726
</p>
2827
</footer>
2928
)

quartz/styles/custom.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ footer {
66
margin-top: 2rem;
77

88
& p {
9-
font-size: medium;
9+
font-size: small;
1010
}
1111

1212
}

0 commit comments

Comments
 (0)