<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>我的博客</title><link>https://example.org/</link><description>Recent content on 我的博客</description><generator>Hugo</generator><language>zh-cn</language><lastBuildDate>Tue, 16 Jun 2026 11:00:00 +0800</lastBuildDate><atom:link href="https://example.org/index.xml" rel="self" type="application/rss+xml"/><item><title>Markdown 写作指南</title><link>https://example.org/posts/markdown-guide/</link><pubDate>Tue, 16 Jun 2026 11:00:00 +0800</pubDate><guid>https://example.org/posts/markdown-guide/</guid><description>常用 Markdown 语法速查，帮助你写出优雅的文章。</description><content:encoded><![CDATA[<h2 id="基础语法">基础语法</h2>
<h3 id="标题">标题</h3>
<p>使用 <code>#</code> 来创建标题，最多支持六级标题。</p>
<h3 id="强调">强调</h3>
<ul>
<li><strong>粗体</strong> — 使用 <code>**粗体**</code></li>
<li><em>斜体</em> — 使用 <code>*斜体*</code></li>
<li><del>删除线</del> — 使用 <code>~~删除线~~</code></li>
</ul>
<h3 id="列表">列表</h3>
<p>无序列表：</p>
<ul>
<li>项目一</li>
<li>项目二
<ul>
<li>子项目</li>
</ul>
</li>
</ul>
<p>有序列表：</p>
<ol>
<li>第一步</li>
<li>第二步</li>
<li>第三步</li>
</ol>
<h2 id="代码">代码</h2>
<p>行内代码：<code>console.log('hello')</code></p>
<p>代码块：</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-javascript" data-lang="javascript"><span style="display:flex;"><span><span style="color:#66d9ef">function</span> <span style="color:#a6e22e">greet</span>(<span style="color:#a6e22e">name</span>) {
</span></span><span style="display:flex;"><span>  <span style="color:#66d9ef">return</span> <span style="color:#e6db74">`Hello, </span><span style="color:#e6db74">${</span><span style="color:#a6e22e">name</span><span style="color:#e6db74">}</span><span style="color:#e6db74">!`</span>;
</span></span><span style="display:flex;"><span>}
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#a6e22e">console</span>.<span style="color:#a6e22e">log</span>(<span style="color:#a6e22e">greet</span>(<span style="color:#e6db74">&#39;World&#39;</span>));</span></span></code></pre></div>
<h2 id="引用">引用</h2>
<blockquote>
<p>生活不是等待暴风雨过去，而是学会在雨中跳舞。</p></blockquote>
<h2 id="表格">表格</h2>
<table>
  <thead>
      <tr>
          <th>特性</th>
          <th>Hugo</th>
          <th>Hexo</th>
          <th>Jekyll</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td>语言</td>
          <td>Go</td>
          <td>Node.js</td>
          <td>Ruby</td>
      </tr>
      <tr>
          <td>速度</td>
          <td>极快</td>
          <td>中等</td>
          <td>中等</td>
      </tr>
      <tr>
          <td>模板</td>
          <td>丰富</td>
          <td>丰富</td>
          <td>丰富</td>
      </tr>
  </tbody>
</table>
<h2 id="数学公式">数学公式</h2>
<p>支持 LaTeX 数学公式：</p>
<p>行内公式：$E = mc^2$</p>
<p>块级公式：</p>
<p>$$
\sum_{i=1}^{n} x_i = x_1 + x_2 + \cdots + x_n
$$</p>
]]></content:encoded></item><item><title>Hello Hugo — 我的第一篇博客</title><link>https://example.org/posts/hello-hugo/</link><pubDate>Tue, 16 Jun 2026 10:00:00 +0800</pubDate><guid>https://example.org/posts/hello-hugo/</guid><description>使用 Hugo 和 PaperMod 主题搭建个人博客的记录。</description><content:encoded><![CDATA[<h2 id="为什么选择-hugo">为什么选择 Hugo</h2>
<p>Hugo 是一个用 Go 语言编写的静态站点生成器，具有以下优势：</p>
<ul>
<li><strong>构建速度快</strong> — 相比其他静态站点生成器，Hugo 的构建速度非常快</li>
<li><strong>模板丰富</strong> — 有大量优秀的主题可供选择</li>
<li><strong>部署简单</strong> — 生成的纯静态 HTML 文件，可以部署在任何地方</li>
</ul>
<h2 id="搭建过程">搭建过程</h2>
<h3 id="1-安装-hugo">1. 安装 Hugo</h3>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span><span style="color:#75715e"># Windows (使用 winget)</span>
</span></span><span style="display:flex;"><span>winget install Hugo.Hugo.Extended
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#75715e"># macOS (使用 Homebrew)</span>
</span></span><span style="display:flex;"><span>brew install hugo</span></span></code></pre></div>
<h3 id="2-创建站点">2. 创建站点</h3>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>hugo new site my-blog
</span></span><span style="display:flex;"><span>cd my-blog</span></span></code></pre></div>
<h3 id="3-安装主题">3. 安装主题</h3>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>git clone --depth <span style="color:#ae81ff">1</span> https://github.com/adityatelange/hugo-PaperMod.git themes/hugo-PaperMod</span></span></code></pre></div>
<h3 id="4-编写文章">4. 编写文章</h3>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>hugo new content posts/my-first-post.md</span></span></code></pre></div>
<h2 id="总结">总结</h2>
<p>Hugo 是一个非常优秀的静态站点生成器，配合 PaperMod 主题可以快速搭建一个美观的个人博客。</p>
<blockquote>
<p>学无止境，记录每一天的成长。</p></blockquote>
]]></content:encoded></item><item><title>👤 关于</title><link>https://example.org/about/</link><pubDate>Tue, 16 Jun 2026 00:00:00 +0000</pubDate><guid>https://example.org/about/</guid><description>&lt;h2 id="关于我">关于我&lt;/h2>
&lt;p>你好！欢迎来到我的博客。&lt;/p>
&lt;p>这是一个使用 Hugo + PaperMod 主题搭建的个人博客，用于记录学习笔记、技术分享和生活感悟。&lt;/p>
&lt;h2 id="联系方式">联系方式&lt;/h2>
&lt;ul>
&lt;li>GitHub: &lt;a href="https://github.com/">https://github.com/&lt;/a>&lt;/li>
&lt;li>Email: &lt;a href="mailto:your@email.com">your@email.com&lt;/a>&lt;/li>
&lt;/ul></description><content:encoded><![CDATA[<h2 id="关于我">关于我</h2>
<p>你好！欢迎来到我的博客。</p>
<p>这是一个使用 Hugo + PaperMod 主题搭建的个人博客，用于记录学习笔记、技术分享和生活感悟。</p>
<h2 id="联系方式">联系方式</h2>
<ul>
<li>GitHub: <a href="https://github.com/">https://github.com/</a></li>
<li>Email: <a href="mailto:your@email.com">your@email.com</a></li>
</ul>
]]></content:encoded></item></channel></rss>