<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Markdown on Rain&#39;s Blog</title>
    <link>https://example.org/tags/markdown/</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/tags/markdown/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>
    
    

    <item>
      <title>Markdown Basic Elements</title>
      <link>https://example.org/post/main/</link>
      <pubDate>Thu, 09 Jun 2022 20:12:52 &#43;0800</pubDate>
      <author>xxx@example.com (D-Sketon)</author>
      <guid>https://example.org/post/main/</guid>
      <description>
        <![CDATA[<h1>Markdown Basic Elements</h1><p>Author: D-Sketon(xxx@example.com)</p>
        
          <h2 id="markdown-基本元素">
<a class="header-anchor" href="#markdown-%e5%9f%ba%e6%9c%ac%e5%85%83%e7%b4%a0"></a>
Markdown 基本元素
</h2><h3 id="标题">
<a class="header-anchor" href="#%e6%a0%87%e9%a2%98"></a>
标题
</h3><h1 id="h1">
<a class="header-anchor" href="#h1"></a>
H1
</h1><h2 id="h2">
<a class="header-anchor" href="#h2"></a>
H2
</h2><h3 id="h3">
<a class="header-anchor" href="#h3"></a>
H3
</h3><h4 id="h4">
<a class="header-anchor" href="#h4"></a>
H4
</h4><h5 id="h5">
<a class="header-anchor" href="#h5"></a>
H5
</h5><h6 id="h6">
<a class="header-anchor" href="#h6"></a>
H6
</h6><h3 id="强调">
<a class="header-anchor" href="#%e5%bc%ba%e8%b0%83"></a>
强调
</h3><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>
<p>Strikethrough uses two tildes. <del>Scratch this.</del></p>
<h3 id="列表">
<a class="header-anchor" href="#%e5%88%97%e8%a1%a8"></a>
列表
</h3><h4 id="definition-list-dl">
<a class="header-anchor" href="#definition-list-dl"></a>
Definition List (dl)
</h4><!-- raw HTML omitted -->
<h4 id="ordered-list-ol">
<a class="header-anchor" href="#ordered-list-ol"></a>
Ordered List (ol)
</h4><ol>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ol>
<h4 id="unordered-list-ul">
<a class="header-anchor" href="#unordered-list-ul"></a>
Unordered List (ul)
</h4><ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ul>
<h3 id="段落">
<a class="header-anchor" href="#%e6%ae%b5%e8%90%bd"></a>
段落
</h3><p>Lorem ipsum dolor sit amet, <a href="">test link</a> consectetur adipiscing elit. <strong>Strong text</strong> pellentesque ligula commodo viverra vehicula. <em>Italic text</em> at ullamcorper enim. Morbi a euismod nibh. <!-- raw HTML omitted -->Underline text<!-- raw HTML omitted --> non elit nisl. <del>Deleted text</del> tristique, sem id condimentum tempus, metus lectus venenatis mauris, sit amet semper lorem felis a eros. Fusce egestas nibh at sagittis auctor. Sed ultricies ac arcu quis molestie. Donec dapibus nunc in nibh egestas, vitae volutpat sem iaculis. Curabitur sem tellus, elementum nec quam id, fermentum laoreet mi. Ut mollis ullamcorper turpis, vitae facilisis velit ultricies sit amet. Etiam laoreet dui odio, id tempus justo tincidunt id. Phasellus scelerisque nunc sed nunc ultricies accumsan.</p>
        
        <hr><p>Published on 2022-06-09 at <a href='https://example.org/'>Rain's Blog</a>, last modified on 2022-06-09</p>]]>
      </description>
      
        <category>test</category>
      
    </item>
    
  </channel>
</rss>
