-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.xml
269 lines (246 loc) · 24.1 KB
/
search.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<?xml version="1.0" encoding="utf-8"?>
<search>
<entry>
<title>Hexo常用指令</title>
<url>/posts/a5b8d333.html</url>
<content><![CDATA[<p>这里列举一些hexo写文章常用指令和语法,方便自己使用</p>
<p>完整的文档可以在<a href="https://hexo.io/zh-cn/docs/">官方文档</a>找到</p>
<h2 id="常用指令"><a href="#常用指令" class="headerlink" title="常用指令"></a>常用指令</h2><h3 id="创建文章"><a href="#创建文章" class="headerlink" title="创建文章"></a>创建文章</h3><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">hexo new <span class="string">"文章标题"</span></span><br></pre></td></tr></table></figure>
<h3 id="生成静态文件"><a href="#生成静态文件" class="headerlink" title="生成静态文件"></a>生成静态文件</h3><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">hexo g</span><br></pre></td></tr></table></figure>
<h3 id="启动本地预览服务器"><a href="#启动本地预览服务器" class="headerlink" title="启动本地预览服务器"></a>启动本地预览服务器</h3><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">hexo server</span><br></pre></td></tr></table></figure>
<h3 id="部署"><a href="#部署" class="headerlink" title="部署"></a>部署</h3><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">hexo deploy</span><br></pre></td></tr></table></figure>
<h3 id="清除缓存"><a href="#清除缓存" class="headerlink" title="清除缓存"></a>清除缓存</h3><figure class="highlight bash"><table><tr><td class="code"><pre><span class="line">hexo clean</span><br></pre></td></tr></table></figure>
<h2 id="常用语法"><a href="#常用语法" class="headerlink" title="常用语法"></a>常用语法</h2><h3 id="文章属性设置"><a href="#文章属性设置" class="headerlink" title="文章属性设置"></a>文章属性设置</h3><table>
<thead>
<tr>
<th>设置</th>
<th>描述</th>
</tr>
</thead>
<tbody><tr>
<td>layout</td>
<td>布局</td>
</tr>
<tr>
<td>title</td>
<td>标题</td>
</tr>
<tr>
<td>date</td>
<td>建立日期</td>
</tr>
<tr>
<td>updated</td>
<td>更新日期</td>
</tr>
<tr>
<td>comments</td>
<td>是否开启文章的评论功能</td>
</tr>
<tr>
<td>tags</td>
<td>标签</td>
</tr>
<tr>
<td>categories</td>
<td>分类</td>
</tr>
<tr>
<td>permalink</td>
<td>覆盖文章的永久链接 永久链接应该以 / 或 .html 结尾</td>
</tr>
<tr>
<td>description</td>
<td>纯文本的页面摘要</td>
</tr>
<tr>
<td>copyright</td>
<td>是否要声明copyright</td>
</tr>
<tr>
<td>cover</td>
<td>封面地址</td>
</tr>
</tbody></table>
]]></content>
<categories>
<category>Hexo</category>
</categories>
<tags>
<tag>Hexo</tag>
<tag>网站</tag>
</tags>
</entry>
<entry>
<title>butterfly主题样式测试</title>
<url>/posts/a9127720.html</url>
<content><![CDATA[<p>This is intended as a quick reference and showcase. For more complete info, see <a href="http://daringfireball.net/projects/markdown/">John Gruber’s original spec</a> and the <a href="http://github.github.com/github-flavored-markdown/">Github-flavored Markdown info page</a>.</p>
<p>This cheatsheet is specifically <em>Markdown Here’s</em> version of Github-flavored Markdown. This differs slightly in styling and syntax from what Github uses, so what you see below might vary a little from what you get in a <em>Markdown Here</em> email, but it should be pretty close.</p>
<h5 id="Table-of-Contents"><a href="#Table-of-Contents" class="headerlink" title="Table of Contents"></a>Table of Contents</h5><p><a href="#headers">Headers</a><br><a href="#emphasis">Emphasis</a><br><a href="#lists">Lists</a><br><a href="#links">Links</a><br><a href="#images">Images</a><br><a href="#code">Code and Syntax Highlighting</a><br><a href="#blockquotes">Blockquotes</a><br><a href="#html">Inline HTML</a><br><a href="#hr">Horizontal Rule</a><br><a href="#lines">Line Breaks</a> </p>
<h2 id="Headers"><a href="#Headers" class="headerlink" title="Headers"></a>Headers</h2><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line"># H1</span><br><span class="line">## H2</span><br><span class="line">### H3</span><br><span class="line">#### H4</span><br><span class="line">##### H5</span><br><span class="line">###### H6</span><br><span class="line"></span><br><span class="line">Alternatively, for H1 and H2, an underline-ish style:</span><br><span class="line"></span><br><span class="line">Alt-H1</span><br><span class="line">======</span><br><span class="line"></span><br><span class="line">Alt-H2</span><br><span class="line">------</span><br></pre></td></tr></table></figure>
<h1 id="H1"><a href="#H1" class="headerlink" title="H1"></a>H1</h1><h2 id="H2"><a href="#H2" class="headerlink" title="H2"></a>H2</h2><h3 id="H3"><a href="#H3" class="headerlink" title="H3"></a>H3</h3><h4 id="H4"><a href="#H4" class="headerlink" title="H4"></a>H4</h4><h5 id="H5"><a href="#H5" class="headerlink" title="H5"></a>H5</h5><h6 id="H6"><a href="#H6" class="headerlink" title="H6"></a>H6</h6><p>Alternatively, for H1 and H2, an underline-ish style:</p>
<h1 id="Alt-H1"><a href="#Alt-H1" class="headerlink" title="Alt-H1"></a>Alt-H1</h1><h2 id="Alt-H2"><a href="#Alt-H2" class="headerlink" title="Alt-H2"></a>Alt-H2</h2><h2 id="Emphasis"><a href="#Emphasis" class="headerlink" title="Emphasis"></a>Emphasis</h2><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">Emphasis, aka italics, with *asterisks* or _underscores_.</span><br><span class="line"></span><br><span class="line">Strong emphasis, aka bold, with **asterisks** or __underscores__.</span><br><span class="line"></span><br><span class="line">Combined emphasis with **asterisks and _underscores_**.</span><br></pre></td></tr></table></figure>
<p>Emphasis, aka italics, with <em>asterisks</em> or <em>underscores</em>.</p>
<p>Strong emphasis, aka bold, with <strong>asterisks</strong> or <strong>underscores</strong>.</p>
<p>Combined emphasis with <strong>asterisks and <em>underscores</em></strong>.</p>
<h2 id="Lists"><a href="#Lists" class="headerlink" title="Lists"></a>Lists</h2><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">1. First ordered list item</span><br><span class="line">2. Another item</span><br><span class="line"> * Unordered sub-list. </span><br><span class="line">1. Actual numbers don't matter, just that it's a number</span><br><span class="line"> 1. Ordered sub-list</span><br><span class="line">4. And another item. </span><br><span class="line"> </span><br><span class="line"> Some text that should be aligned with the above item.</span><br><span class="line"></span><br><span class="line">* Unordered list can use asterisks</span><br><span class="line">- Or minuses</span><br><span class="line">+ Or pluses</span><br></pre></td></tr></table></figure>
<ol>
<li>First ordered list item</li>
<li>Another item</li>
</ol>
<ul>
<li>Unordered sub-list.</li>
</ul>
<ol>
<li><p>Actual numbers don’t matter, just that it’s a number</p>
</li>
<li><p>Ordered sub-list</p>
</li>
<li><p>And another item. </p>
<p>Some text that should be aligned with the above item.</p>
</li>
</ol>
<ul>
<li>Unordered list can use asterisks</li>
</ul>
<ul>
<li>Or minuses</li>
</ul>
<ul>
<li>Or pluses</li>
</ul>
<h2 id="Links"><a href="#Links" class="headerlink" title="Links"></a>Links</h2><p>There are two ways to create links.</p>
<figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">[I'm an inline-style link](https://www.google.com)</span><br><span class="line"></span><br><span class="line">[I'm a reference-style link][Arbitrary case-insensitive reference text]</span><br><span class="line"></span><br><span class="line">[You can use numbers for reference-style link definitions][1]</span><br><span class="line"></span><br><span class="line">Or leave it empty and use the [link text itself][]</span><br><span class="line"></span><br><span class="line">Some text to show that the reference links can follow later.</span><br><span class="line"></span><br><span class="line">[arbitrary case-insensitive reference text]: https://www.mozilla.org</span><br><span class="line">[1]: http://slashdot.org</span><br><span class="line">[link text itself]: http://www.reddit.com</span><br></pre></td></tr></table></figure>
<p><a href="https://www.google.com/">I’m an inline-style link</a></p>
<p><a href="https://www.mozilla.org/">I’m a reference-style link</a></p>
<p><a href="http://slashdot.org/">You can use numbers for reference-style link definitions</a></p>
<p>Or leave it empty and use the <a href="http://www.reddit.com/">link text itself</a></p>
<p>Some text to show that the reference links can follow later.</p>
<h2 id="Images"><a href="#Images" class="headerlink" title="Images"></a>Images</h2><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">Here's our logo (hover to see the title text):</span><br><span class="line"></span><br><span class="line">Inline-style: </span><br><span class="line">![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")</span><br><span class="line"></span><br><span class="line">Reference-style: </span><br><span class="line">![alt text][logo]</span><br><span class="line"></span><br><span class="line">[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"</span><br></pre></td></tr></table></figure>
<p>Here’s our logo (hover to see the title text):</p>
<p>Inline-style:<br><img src="https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png" alt="alt text" title="Logo Title Text 1"></p>
<p>Reference-style:<br><img src="https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png" alt="alt text" title="Logo Title Text 2"></p>
<h2 id="Code-and-Syntax-Highlighting"><a href="#Code-and-Syntax-Highlighting" class="headerlink" title="Code and Syntax Highlighting"></a>Code and Syntax Highlighting</h2><p>Code blocks are part of the Markdown spec, but syntax highlighting isn’t. However, many renderers – like Github’s and <em>Markdown Here</em> – support syntax highlighting. <em>Markdown Here</em> supports highlighting for dozens of languages (and not-really-languages, like diffs and HTTP headers); to see the complete list, and how to write the language names, see the <a href="http://softwaremaniacs.org/media/soft/highlight/test.html">highlight.js demo page</a>.</p>
<figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">Inline `code` has `back-ticks around` it.</span><br></pre></td></tr></table></figure>
<p>Inline <code>code</code> has <code>back-ticks around</code> it.</p>
<p>Blocks of code are either fenced by lines with three back-ticks <code>```</code>, or are indented with four spaces. I recommend only using the fenced code blocks – they’re easier and only they support syntax highlighting.</p>
<figure class="highlight javascript"><table><tr><td class="code"><pre><span class="line"><span class="keyword">var</span> s = <span class="string">"JavaScript syntax highlighting"</span>;</span><br><span class="line"><span class="title function_">alert</span>(s);</span><br></pre></td></tr></table></figure>
<figure class="highlight python"><table><tr><td class="code"><pre><span class="line">s = <span class="string">"Python syntax highlighting"</span></span><br><span class="line"><span class="built_in">print</span> s</span><br></pre></td></tr></table></figure>
<figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">No language indicated, so no syntax highlighting. </span><br><span class="line">But let's throw in a <b>tag</b>.</span><br></pre></td></tr></table></figure>
<figure class="highlight javascript"><table><tr><td class="code"><pre><span class="line"><span class="keyword">var</span> s = <span class="string">"JavaScript syntax highlighting"</span>;</span><br><span class="line"><span class="title function_">alert</span>(s);</span><br></pre></td></tr></table></figure>
<figure class="highlight python"><table><tr><td class="code"><pre><span class="line">s = <span class="string">"Python syntax highlighting"</span></span><br><span class="line"><span class="built_in">print</span> s</span><br></pre></td></tr></table></figure>
<figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">No language indicated, so no syntax highlighting in Markdown Here (varies on Github). </span><br><span class="line">But let's throw in a <b>tag</b>.</span><br></pre></td></tr></table></figure>
<p>(Github Wiki pages don’t seem to support syntax highlighting, so the above won’t be colourful (the strings are not red, for example). Try it out in a <em>Markdown Here</em> email or a Github Markdown README or Github Issue – you can preview a new Issue without submitting it.)</p>
<p>Again, to see what languages are available for highlighting, and how to write those language names, see the <a href="http://softwaremaniacs.org/media/soft/highlight/test.html">highlight.js demo page</a>.</p>
<h2 id="Blockquotes"><a href="#Blockquotes" class="headerlink" title="Blockquotes"></a>Blockquotes</h2><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">> Blockquotes are very handy in email to emulate reply text.</span><br><span class="line">> This line is part of the same quote.</span><br><span class="line"></span><br><span class="line">Quote break.</span><br><span class="line"></span><br><span class="line">> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote. </span><br></pre></td></tr></table></figure>
<blockquote>
<p>Blockquotes are very handy in email to emulate reply text.<br>This line is part of the same quote.</p>
</blockquote>
<p>Quote break.</p>
<blockquote>
<p>This is a very long line that will still be quoted properly when it wraps. Oh boy let’s keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can <em>put</em> <strong>Markdown</strong> into a blockquote. </p>
</blockquote>
<h2 id="Inline-HTML"><a href="#Inline-HTML" class="headerlink" title="Inline HTML"></a>Inline HTML</h2><p>You can also use raw HTML in your Markdown, and it’ll mostly work pretty well. Here are a couple of common examples:</p>
<figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line"><dl></span><br><span class="line"> <dt>Definition list</dt></span><br><span class="line"> <dd>Is something people use sometimes.</dd></span><br><span class="line"></span><br><span class="line"> <dt>Markdown in HTML</dt></span><br><span class="line"> <dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd></span><br><span class="line"></dl></span><br><span class="line"></span><br><span class="line"><table></span><br><span class="line"> <tr></span><br><span class="line"> <th></th></span><br><span class="line"> <th>Tables</th></span><br><span class="line"> <th>Are</th></span><br><span class="line"> <th>Cool</th></span><br><span class="line"> </tr></span><br><span class="line"> <tr></span><br><span class="line"> <th>Zebra</th></span><br><span class="line"> <td>Stripes</td></span><br><span class="line"> <td>Are</td></span><br><span class="line"> <td>Pretty</td></span><br><span class="line"> </tr></span><br><span class="line"> <tr></span><br><span class="line"> <th>Here</th></span><br><span class="line"> <td>Is</td></span><br><span class="line"> <td>Another</td></span><br><span class="line"> <td>Row</td></span><br><span class="line"> </tr></span><br><span class="line"></table></span><br></pre></td></tr></table></figure>
<dl>
<dt>Definition list</dt>
<dd>Is something people use sometimes.</dd>
<dt>Markdown in HTML</dt>
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
</dl>
<table>
<tr>
<th></th>
<th>Tables</th>
<th>Are</th>
<th>Cool</th>
</tr>
<tr>
<th>Zebra</th>
<td>Stripes</td>
<td>Are</td>
<td>Pretty</td>
</tr>
<tr>
<th>Here</th>
<td>Is</td>
<td>Another</td>
<td>Row</td>
</tr>
</table>
<p>Github-flavored Markdown supports a special table syntax, but <em>Markdown Here</em> does not support it yet. <a href="https://github.com/adam-p/markdown-here/issues/13">There’s an issue for it.</a></p>
<h2 id="Horizontal-Rule"><a href="#Horizontal-Rule" class="headerlink" title="Horizontal Rule"></a>Horizontal Rule</h2><figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">Three or more...</span><br><span class="line"></span><br><span class="line">---</span><br><span class="line"></span><br><span class="line">Hyphens</span><br><span class="line"></span><br><span class="line">***</span><br><span class="line"></span><br><span class="line">Asterisks</span><br><span class="line"></span><br><span class="line">___</span><br><span class="line"></span><br><span class="line">Underscores</span><br></pre></td></tr></table></figure>
<p>Three or more…</p>
<hr>
<p>Hyphens</p>
<hr>
<p>Asterisks</p>
<hr>
<p>Underscores</p>
<h2 id="Line-Breaks"><a href="#Line-Breaks" class="headerlink" title="Line Breaks"></a>Line Breaks</h2><p>My basic recommendation for learning how line breaks work is to experiment and discover – hit <Enter> once, then hit it twice, see what happens. You’ll soon learn to get what you want. “Markdown Toggle” is your friend. </p>
<p>Here are some things to try out:</p>
<figure class="highlight plaintext"><table><tr><td class="code"><pre><span class="line">With only a single newline, this line and</span><br><span class="line">this line will be a *single line*.</span><br><span class="line"></span><br><span class="line">But this one is separated by two newlines and so will be a *separate paragraph*.</span><br><span class="line"></span><br><span class="line">This line has two spaces at the end (hard for you to see, but trust me!). </span><br><span class="line">So this is a separate line in the *same paragraph*.</span><br></pre></td></tr></table></figure>
<p>With only a single newline, this line and<br>this line will be a <em>single line</em>.</p>
<p>But this one is separated by two newlines and so will be a <em>separate paragraph</em>.</p>
<p>This line has two spaces at the end (hard for you to see, but trust me!).<br>So this is a separate line in the <em>same paragraph</em>.</p>
]]></content>
<tags>
<tag>其他</tag>
</tags>
</entry>
<entry>
<title>与世界交手后的我</title>
<url>/posts/34ad80a7.html</url>
<content><![CDATA[<p>我本是匆匆人间过客<br>构筑着美梦在世存活<br>该不该回答懵懂的我<br>该怎样才算顺应生活</p>
<p>可是我从来不甘如此<br>天性生出了新的枷锁<br>偏离轨道的不羁魂魄<br>撞向世界的生存法则</p>
<p>被摆布,被指责<br>被同化,被拉扯<br>世界刻下了他们的模样如出一辙<br>一如千篇一律的人间颂歌</p>
<p>在这里人间如画,万家灯火交汇勾勒<br>真实的、虚假的,绘满了暗淡的星河<br>那当初懵懂的我,又在梦想改变什么<br>这如今失落的我,又在希望得到什么<br>明明从未窥见滤镜下的世界真正颜色<br>却仍在梦境中臆造着虚妄的文明之国</p>
<hr>
<p>我本是匆匆人间过客<br>构筑着美梦在世存活<br>该不该回答懵懂的我<br>该怎样才能改变生活</p>
<p>因为我从来都是如此<br>天性使然不羁地生活<br>那我所拥抱的这世界<br>是否应为我改变什么</p>
<p>去摆布,去指责<br>去同化,去拉扯<br>世界创造了万千生灵自在地放歌<br>一同前赴后继般飞蛾扑火</p>
<p>在这里郁结的心,如释然般一路高歌<br>真挚的、虚妄的欢呼,一并回应着我<br>虽旅途中迷茫奔波失去了太多<br>但记忆和感受是真实留下来的<br>那我为与世界相遇而做的抉择<br>不恰是这场盛宴中最绚烂烟火</p>
<hr>
<p>又谁于耳畔低声地对我诉说<br>你与世界的妥协改变又能算什么<br>模糊的光影消匿,又留下了什么<br>此时的你,已经走遍了太多太多</p>
<p>在这里,所有意义,早如扼喉般不可言说<br>真实的讽刺的结局还有天真的我<br>不懂规律和道理摸索着小心去做<br>迷茫太久早已迷失了最初的自我<br>一切正如你所说早已扭曲了因果<br>将随波逐流的我推上这虚假王座</p>
<p>所有色彩肆意涂抹,迎接着人潮喧嚣奔过!<br>使他们的色泽艳丽到如出一辙<br>便再无法抱紧世界背后的颜色<br>欺骗了世界也欺骗了天真的我<br>还找不到最终真正的快乐天国</p>
<blockquote>
<p>改自<a href="https://b23.tv/UyL5omP">【原创·词】与世界交手后</a></p>
</blockquote>
]]></content>
<categories>
<category>随笔</category>
</categories>
<tags>
<tag>随笔</tag>
</tags>
</entry>
<entry>
<title>月光</title>
<url>/posts/307d4838.html</url>
<content><![CDATA[<p>起初,月亮也不知道自己是月亮<br>它的世界开始时它并没有光芒<br>它没有梦,也不去想<br>光告诉它,它也有它可以去的地方<br>光告诉它,它也有它可以拥有的梦<br>光告诉它,它也有它可以拥有的光<br>光告诉它很多,随后便消失了<br>它茫然地等,它想过很多,它在等光<br>有一时刻,光来了<br>它说它不知道,自己该去什么地方<br>“那么,替我照耀这世界吧,哪怕微弱的一点。”<br>它依旧迷茫<br>它依旧没有梦,也不去想<br>但它知道,光在远方<br>它眺望光,思念光<br>它没有忘记约定<br>黑夜开始时,它就是光</p>
]]></content>
<categories>
<category>随笔</category>
</categories>
<tags>
<tag>随笔</tag>
</tags>
</entry>
<entry>
<title>在世界终结之时旁观者的独白</title>
<url>/posts/5d23364b.html</url>
<content><![CDATA[<p>是的,正如你所想的,这个世界不再会变好了。去关心你想关心的,去看你想看的,去厌恶,去憎恨,去爱,都无所谓的。因为这世界就是很糟糕,未来只会比现在更魔幻。这个世界从不美好,每个在虚无中飘渺的痛苦着的人,幻想着他们期望的延续,将其视为希望。你要知道,你们的苦难从来都是没有理由强加在你身上的。从你们所谓的科学角度而言,生命是一场由繁殖所传播的疾病,死亡率为百分之一百。我想说的是,对于你们来说,死亡是唯一的结局。生命被强迫来到这世上,最终又被强迫着离开,从头到尾,都是迷惘的灵魂和脆弱的躯壳无谓的挣扎。然而即使这样呢,还是有人,想要去追寻自己生命的目的,但每次却又都是这么无力,他们有的时候也会哭泣,也会失望。但是这一切终将会迎来终结,你也知道的,太阳总是会落下的,不是吗。梦再美,也是该醒了。对我而言,这里没有所谓过去,当然也不存在什么未来,当下的一瞬便是你们所拥有的一切。诚然,世界是虚无的,一切都是无意义的,但你们仍可以赋予和创造世界你自己所定义的意义。我不会参与“世界”这场游戏,也不被一切固有观念体系规则所束缚,也不会在乎着怎样的结局,我只希望在这世界尽头,遥望你们在无意义之上创造各自自定义的意义。</p>
<hr>
<blockquote>
<p>随便写的,类似于终末之诗,可以当作大结局彩蛋之类的吧。</p>
</blockquote>
]]></content>
<categories>
<category>随笔</category>
</categories>
<tags>
<tag>随笔</tag>
</tags>
</entry>
</search>