<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Basic Note on Rain&#39;s Blog</title>
    <link>https://example.org/categories/basic-note/</link>
    <description>Recent content from Rain&#39;s Blog</description>
    <generator>Hugo</generator>
    <language>en</language>
    
    <managingEditor>xxx@example.com (D-Sketon)</managingEditor>
    <webMaster>xxx@example.com (D-Sketon)</webMaster>
    
    <copyright>All articles on this blog are licensed under the BY-NC-SA license agreement unless otherwise stated. Please indicate the source when reprinting!</copyright>
    
    <lastBuildDate>Mon, 13 Apr 2026 19:37:52 +0800</lastBuildDate>
    
    
    <atom:link href="https://example.org/categories/basic-note/index.xml" rel="self" type="application/rss&#43;xml" />
    

    
    

    <item>
      <title>md 格式学习</title>
      <link>https://example.org/post/md%E6%A0%BC%E5%BC%8F%E5%A4%87%E5%BF%98%E5%BD%95/</link>
      <pubDate>Mon, 13 Apr 2026 19:37:52 &#43;0800</pubDate>
      <author>xxx@example.com (D-Sketon)</author>
      <guid>https://example.org/post/md%E6%A0%BC%E5%BC%8F%E5%A4%87%E5%BF%98%E5%BD%95/</guid>
      <description>
        <![CDATA[<h1>md 格式学习</h1><p>Author: D-Sketon(xxx@example.com)</p>
        
          <h1 id="markdown-标准示例文件">
<a class="header-anchor" href="#markdown-%e6%a0%87%e5%87%86%e7%a4%ba%e4%be%8b%e6%96%87%e4%bb%b6"></a>
Markdown 标准示例文件
</h1><p>这是一个标准的 Markdown (<code>.md</code>) 示例文件，可用于学习、测试或作为模板直接修改。</p>
<h2 id="1-标题示例">
<a class="header-anchor" href="#1-%e6%a0%87%e9%a2%98%e7%a4%ba%e4%be%8b"></a>
1. 标题示例
</h2><h1 id="一级标题">
<a class="header-anchor" href="#%e4%b8%80%e7%ba%a7%e6%a0%87%e9%a2%98"></a>
一级标题
</h1><h2 id="二级标题">
<a class="header-anchor" href="#%e4%ba%8c%e7%ba%a7%e6%a0%87%e9%a2%98"></a>
二级标题
</h2><h3 id="三级标题">
<a class="header-anchor" href="#%e4%b8%89%e7%ba%a7%e6%a0%87%e9%a2%98"></a>
三级标题
</h3><h4 id="四级标题">
<a class="header-anchor" href="#%e5%9b%9b%e7%ba%a7%e6%a0%87%e9%a2%98"></a>
四级标题
</h4><hr>
<h2 id="2-段落与换行">
<a class="header-anchor" href="#2-%e6%ae%b5%e8%90%bd%e4%b8%8e%e6%8d%a2%e8%a1%8c"></a>
2. 段落与换行
</h2><p>这是第一段文字。</p>
<p>这是第二段文字。<br>
这一行通过在行尾添加两个空格实现换行。</p>
<hr>
<h2 id="3-文本样式">
<a class="header-anchor" href="#3-%e6%96%87%e6%9c%ac%e6%a0%b7%e5%bc%8f"></a>
3. 文本样式
</h2><p><strong>粗体文字</strong></p>
<p><em>斜体文字</em></p>
<p><em><strong>粗斜体文字</strong></em></p>
<p><del>删除线文字</del></p>
<p><code>行内代码</code></p>
<hr>
<h2 id="4-列表示例">
<a class="header-anchor" href="#4-%e5%88%97%e8%a1%a8%e7%a4%ba%e4%be%8b"></a>
4. 列表示例
</h2><h3 id="无序列表">
<a class="header-anchor" href="#%e6%97%a0%e5%ba%8f%e5%88%97%e8%a1%a8"></a>
无序列表
</h3><ul>
<li>苹果</li>
<li>香蕉</li>
<li>橙子</li>
</ul>
<h3 id="有序列表">
<a class="header-anchor" href="#%e6%9c%89%e5%ba%8f%e5%88%97%e8%a1%a8"></a>
有序列表
</h3><ol>
<li>第一项</li>
<li>第二项</li>
<li>第三项</li>
</ol>
<h3 id="任务列表">
<a class="header-anchor" href="#%e4%bb%bb%e5%8a%a1%e5%88%97%e8%a1%a8"></a>
任务列表
</h3><ul>
<li><input checked="" disabled="" type="checkbox"> 学会标题</li>
<li><input checked="" disabled="" type="checkbox"> 学会列表</li>
<li><input disabled="" type="checkbox"> 学会表格</li>
</ul>
<hr>
<h2 id="5-引用">
<a class="header-anchor" href="#5-%e5%bc%95%e7%94%a8"></a>
5. 引用
</h2><blockquote>
<p>这是一级引用。</p>
<blockquote>
<p>这是二级引用。</p>
</blockquote>
</blockquote>
<hr>
<h2 id="6-代码块">
<a class="header-anchor" href="#6-%e4%bb%a3%e7%a0%81%e5%9d%97"></a>
6. 代码块
</h2><div class="highlight"><pre tabindex="0" class="chroma"><code class="language-cpp" data-lang="cpp"><span class="line"><span class="cl"><span class="cp">#include</span> <span class="cpf">&lt;iostream&gt;</span><span class="cp">
</span></span></span><span class="line"><span class="cl"><span class="k">using</span> <span class="k">namespace</span> <span class="n">std</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="kt">int</span> <span class="nf">main</span><span class="p">()</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl">    <span class="n">cout</span> <span class="o">&lt;&lt;</span> <span class="s">&#34;Hello, Markdown!&#34;</span> <span class="o">&lt;&lt;</span> <span class="n">endl</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">    <span class="k">return</span> <span class="mi">0</span><span class="p">;</span>
</span></span><span class="line"><span class="cl"><span class="p">}</span>
</span></span></code></pre></div><div class="highlight"><pre tabindex="0" class="chroma"><code class="language-python" data-lang="python"><span class="line"><span class="cl"><span class="nb">print</span><span class="p">(</span><span class="s2">&#34;Hello, Markdown!&#34;</span><span class="p">)</span>
</span></span></code></pre></div><hr>
<h2 id="7-分割线">
<a class="header-anchor" href="#7-%e5%88%86%e5%89%b2%e7%ba%bf"></a>
7. 分割线
</h2><p>上面和下面都可以用三条横线分隔。</p>
        
        <hr><p>Published on 2026-04-13 at <a href='https://example.org/'>Rain's Blog</a>, last modified on 2026-04-13</p>]]>
      </description>
      
        <category>basic note</category>
      
    </item>
    
  </channel>
</rss>
