@@ -8,15 +8,191 @@ draft: true
88date : 2025-05-01
99---
1010
11- This is a blank Quartz installation.
1211
13- hi
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]
1476
15- See the [ documentation] ( https://quartz.jzhao.xyz ) for how to get started.
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 `
16157
17158``` cpp
159+ /* codeblock */
160+
161+ #include < iostream>
162+
18163int main () {
19- std::cout << "Hello, world!" << std::endl ;
164+ std::cout << "Hello World!" ;
20165 return 0;
21166}
22167```
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+
0 commit comments