<?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>写作 on 我的博客</title><link>https://example.org/tags/%E5%86%99%E4%BD%9C/</link><description>Recent content in 写作 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/tags/%E5%86%99%E4%BD%9C/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></channel></rss>