-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.xml
153 lines (97 loc) · 4.78 KB
/
rss.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Finn's Blog</title>
<link>https://zhangfinn.github.io/</link>
<description>Finn's Blog</description>
<generator>Hugo 0.90.1 https://gohugo.io/</generator>
<language>zh-CN</language>
<managingEditor>[email protected] (Finn)</managingEditor>
<webMaster>[email protected] (Finn)</webMaster>
<lastBuildDate>Fri, 01 Apr 2022 11:33:16 +0800</lastBuildDate>
<atom:link rel="self" type="application/rss+xml" href="https://zhangfinn.github.io/rss.xml" />
<item>
<title>Links</title>
<link>https://zhangfinn.github.io/posts/2022-03-31/</link>
<guid isPermaLink="true">https://zhangfinn.github.io/posts/2022-03-31/</guid>
<pubDate>Thu, 31 Mar 2022 00:00:00 +0000</pubDate>
<description><![CDATA[<p>hugo的第一个推送year</p>
]]></description>
<category domain="https://zhangfinn.github.io/categories/%E5%8D%9A%E5%AE%A2/">博客</category>
<category domain="https://zhangfinn.github.io/tags/blog/">Blog</category>
</item>
<item>
<title>Links</title>
<link>https://zhangfinn.github.io/posts/2021-12-15/</link>
<guid isPermaLink="true">https://zhangfinn.github.io/posts/2021-12-15/</guid>
<pubDate>Wed, 15 Dec 2021 00:00:00 +0000</pubDate>
<description><![CDATA[<h1 id="markdown-syntax-guide">Markdown syntax guide</h1>
<h2 id="headers">Headers</h2>
<h1 id="this-is-a-heading-h1">This is a Heading h1</h1>
<h2 id="this-is-a-heading-h2">This is a Heading h2</h2>
<h6 id="this-is-a-heading-h6">This is a Heading h6</h6>
<h2 id="emphasis">Emphasis</h2>
<p><em>This text will be italic</em><br>
<em>This will also be italic</em></p>
<p><strong>This text will be bold</strong><br>
<strong>This will also be bold</strong></p>
<p><em>You <strong>can</strong> combine them</em></p>
<h2 id="lists">Lists</h2>
<h3 id="unordered">Unordered</h3>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 2a</li>
<li>Item 2b</li>
</ul>
<h3 id="ordered">Ordered</h3>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 3a</li>
<li>Item 3b</li>
</ol>
<h2 id="images">Images</h2>
<p><img src="/image/sample.png" alt="This is a alt text." title="This is a sample image."></p>
<h2 id="links">Links</h2>
<p>You may be using <a href="https://markdownlivepreview.com/">Markdown Live Preview</a>.</p>
<h2 id="blockquotes">Blockquotes</h2>
<blockquote>
<p>Markdown is a lightweight markup language with plain-text-formatting syntax, created in 2004 by John Gruber with Aaron Swartz.</p>
<blockquote>
<p>Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text using a plain text editor.</p>
</blockquote>
</blockquote>
<h2 id="tables">Tables</h2>
<table>
<thead>
<tr>
<th>Left columns</th>
<th style="text-align:center">Right columns</th>
</tr>
</thead>
<tbody>
<tr>
<td>left foo</td>
<td style="text-align:center">right foo</td>
</tr>
<tr>
<td>left bar</td>
<td style="text-align:center">right bar</td>
</tr>
<tr>
<td>left baz</td>
<td style="text-align:center">right baz</td>
</tr>
</tbody>
</table>
<h2 id="blocks-of-code">Blocks of code</h2>
<pre tabindex="0"><code>let message = 'Hello world';
alert(message);
</code></pre><h2 id="inline-code">Inline code</h2>
<p>This web site is using <code>markedjs/marked</code>.</p>
]]></description>
</item>
</channel>
</rss>