<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>没用的小废鼠的Blog</title>
    <link>https://example.com</link>
    <description>知识，理当分享！</description>
    <language>zh-CN</language>
    <lastBuildDate>Mon, 06 Jul 2026 12:01:53 GMT</lastBuildDate>
    <item>
      <title>使用Cloudflare+GitHub搭建图床</title>
      <link>https://example.com/article/Cloudflare-GitHub-img</link>
      <guid isPermaLink="true">https://example.com/article/Cloudflare-GitHub-img</guid>
      <description>分享一些比较实用的网站</description>
      <content:encoded><![CDATA[<h2>准备工作</h2><p>1. GitHub账号</p><p>1. Cloudflare账号</p><h2>操作流程</h2><p>1. 进入GitHub创建一个仓库（可以是私有仓库）</p><p>1. 创建完成后打开Cloudflare官网</p><p>1. 点击 Workers 和 Pages 创建 应用程序 pages 连接到git</p><p>1. 选择你刚刚创建的仓库</p><p>构建设置空着就行</p><p>1. 点击 保存并部署 </p><p>1. 完成之后点击下面的域名就可以访问了</p><p>1. 添加文件 进入GitHub 上传图片就行了</p><h2>其他</h2><p>如果你怕文件太大并且整理麻烦不妨试试后面的步骤</p><pre><code style="white-space:pre;">from PIL import Image
import os

current_directory = os.getcwd()

# ---------- 第一步：转换图片为 webp 并删除原文件 ----------
for filename in os.listdir(current_directory):
    file_path = os.path.join(current_directory, filename)
    # 只处理文件，忽略子目录
    if not os.path.isfile(file_path):
        continue

    # 不区分大小写地匹配图片扩展名
    if filename.lower().endswith((&quot;.jpg&quot;, &quot;.jpeg&quot;, &quot;.png&quot;)):
        try:
            with Image.open(file_path) as img:
                output_filename = os.path.splitext(filename)[0] + &quot;.webp&quot;
                output_path = os.path.join(current_directory, output_filename)
                img.save(output_path, &quot;webp&quot;)
            os.remove(file_path)          # 删除原图
            print(f&quot;转换成功：{filename} -&gt; {output_filename}&quot;)
        except Exception as e:
            print(f&quot;转换失败：{filename}，错误：{e}&quot;)

# ---------- 第二步：生成 Markdown 列表 ----------
image_files = []
image_count = 0

for filename in os.listdir(current_directory):
    file_path = os.path.join(current_directory, filename)
    if not os.path.isfile(file_path):
        continue

    # 统计所有 .webp 文件（图片）
    if filename.lower().endswith(&quot;.webp&quot;):
        image_count += 1
        image_name = os.path.splitext(filename)[0]
        image_url = f&quot;./{filename}&quot;          # 相对链接
        image_files.append(f&quot;| {image_count} | {image_name} | [下载]({image_url}) |&quot;)

# 写入 list.md
with open(&quot;list.md&quot;, &quot;w&quot;, encoding=&quot;utf-8&quot;) as md_file:
    md_file.write(&quot;| # | 名称 | 链接 |\n&quot;)
    md_file.write(&quot;| --- | --- | --- |\n&quot;)
    md_file.write(&quot;\n&quot;.join(image_files))

if image_files:
    print(f&quot;已生成图片列表到 list.md，共 {image_count} 张图片&quot;)
else:
    print(&quot;当前目录下没有 .webp 图片文件&quot;)</code></pre><p>这个代码可以自动把图片转换成体积更小的 webp 文件 并且生成 list.md</p><p>注意 需要安装 python的Image库</p><p>CF构建命令<br /></p><pre><code style="white-space:pre;">pip3 install --upgrade pip &amp;&amp; pip install pillow &amp;&amp; cd ./&lt;单独的文件夹&gt; &amp;&amp; python webp.py</code></pre><p>如果出现 生成出来的序号不是1开始的 请创建一个文件夹单独放置</p><p>再搭配</p><pre><code style="white-space:pre;">&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;zh-CN&quot;&gt;

&lt;head&gt;
  &lt;meta charset=&quot;UTF-8&quot;&gt;
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;
  &lt;title&gt;图片列表&lt;/title&gt;
  &lt;link rel=&quot;shortcut icon&quot; type=&quot;image/ico&quot; href=&quot;https://xiaofeishu-picture.pages.dev/picture/ico.png&quot;&gt;
  &lt;!--使用MDUI--&gt;
  &lt;link rel=&quot;stylesheet&quot; href=&quot;https://unpkg.com/mdui@1.0.2/dist/css/mdui.min.css&quot; /&gt;
  &lt;script src=&quot;https://unpkg.com/mdui@1.0.2/dist/js/mdui.min.js&quot;&gt;&lt;/script&gt;
  &lt;!-- 引入Bootstrap的CSS库 --&gt;
  &lt;link href=&quot;https://unpkg.com/bootstrap@5.3.0/dist/css/bootstrap.min.css&quot; rel=&quot;stylesheet&quot;&gt;
  &lt;!-- 引入Bootstrap的JavaScript库 --&gt;
  &lt;script src=&quot;https://unpkg.com/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;
  &lt;script
    src=&quot;https://unpkg.com/genshin-good-words&quot;
    charset=&quot;utf-8&quot;&gt;&lt;/script&gt;
  &lt;style&gt;
    body {
      font-weight: 500;
    }

    /* 为导航栏添加上边距 */
    .mdui-appbar {
      margin-bottom: 20px;
    }
  &lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
  &lt;!--导航栏--&gt;
  &lt;div class=&quot;mdui-appbar&quot; mdui-appbar-fixed&gt;
    &lt;div class=&quot;mdui-toolbar mdui-color-indigo&quot;&gt;
      &lt;a class=&quot;mdui-btn mdui-btn-icon&quot; id=&quot;toggle&quot;&gt;
        &lt;i class=&quot;mdui-icon material-icons&quot;&gt;menu&lt;/i&gt;
      &lt;/a&gt;
      &lt;a href=&quot;#&quot; class=&quot;mdui-typo-headline&quot;&gt;图片列表&lt;/a&gt;
      &lt;div class=&quot;mdui-toolbar-spacer&quot;&gt;&lt;/div&gt;
      &lt;div class=&quot;mdui-typo-title&quot; id=&quot;ys&quot;&gt;欲买桂花同载酒...只可惜故人，何日再见呢?&lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/body&gt;

&lt;body class=&quot;mdui-drawer-body &quot; style=&quot;padding-top: 20px;&quot;&gt;
  &lt;div class=&quot;mdui-drawer mdui-drawer-close&quot; id=&quot;drawer&quot;&gt;
    &lt;ul class=&quot;mdui-list&quot;&gt;
      &lt;div class=&quot;mdui-card-header&quot;&gt;
        &lt;img class=&quot;mdui-card-header-avatar&quot;
          src=&quot;https://xiaofeishu-picture.pages.dev/picture/ico.png&quot; /&gt;
        &lt;div class=&quot;mdui-card-header-title&quot;&gt;没用的小废鼠&lt;/div&gt;
        &lt;div class=&quot;mdui-card-header-subtitle&quot;&gt;awa&lt;/div&gt;
      &lt;/div&gt;
      &lt;li class=&quot;mdui-subheader&quot;&gt;&lt;i class=&quot;mdui-icon material-icons&quot;&gt;link&lt;/i&gt;更多&lt;/li&gt;
      &lt;li class=&quot;mdui-list-item mdui-ripple&quot;&gt;
        &lt;i class=&quot;mdui-list-item-icon mdui-icon material-icons&quot;&gt;list&lt;/i&gt;
        &lt;a class=&quot;mdui-list-item-content&quot; href=&quot;https://ymh0000123.github.io/&quot;&gt;主页&lt;/a&gt;
      &lt;/li&gt;
      &lt;li class=&quot;mdui-list-item mdui-ripple&quot;&gt;
        &lt;i class=&quot;mdui-list-item-icon mdui-icon material-icons&quot;&gt;assignment&lt;/i&gt;
        &lt;a class=&quot;mdui-list-item-content&quot; href=&quot;https://xiaofeishu-boke.netlify.app/&quot;&gt;blog&lt;/a&gt;
      &lt;/li&gt;
  &lt;/div&gt;
&lt;/body&gt;

&lt;body&gt;
  &lt;div class=&quot;mdui-col-md-7 mdui-col-offset-md-3&quot;&gt;
    &lt;div class=&quot;card&quot;&gt;
      &lt;div class=&quot;card-header&quot;&gt;
        &lt;div class=&quot;mdui-typo-display-1&quot;&gt;&lt;i class=&quot;mdui-icon material-icons&quot;&gt;view_list&lt;/i&gt;文件列表&lt;/div&gt;
      &lt;/div&gt;
      &lt;div class=&quot;mdui-container&quot;&gt;
        &lt;table class=&quot;mdui-table mdui-table-hoverable&quot; id=&quot;dynamic-table&quot;&gt;
          &lt;thead&gt;
            &lt;tr&gt;
              &lt;th&gt;序号&lt;/th&gt;
              &lt;th&gt;文件名&lt;/th&gt;
              &lt;th&gt;下载链接&lt;/th&gt;
            &lt;/tr&gt;
          &lt;/thead&gt;
          &lt;tbody&gt;
            &lt;ul class=&quot;mdui-list&quot; id=&quot;dynamic-list&quot;&gt;
              &lt;!-- 动态列表将在这里生成 --&gt;
            &lt;/ul&gt;
          &lt;/tbody&gt;
        &lt;/table&gt;
      &lt;/div&gt;

    &lt;/div&gt;
  &lt;/div&gt;
  &lt;script&gt;
    var $ = mdui.$;
    var inst = new mdui.Drawer(&apos;#drawer&apos;);

    // method

    $(&apos;#toggle&apos;).on(&apos;click&apos;, function () {
      inst.toggle();
    });

  &lt;/script&gt;
  &lt;script&gt;
    // 使用JavaScript来获取README.md文件内容并生成动态列表
    const dynamicTable = document.getElementById(&quot;dynamic-table&quot;).getElementsByTagName(&apos;tbody&apos;)[0];

    // 发送HTTP请求获取list.md文件内容
    fetch(&quot;list.md&quot;)
      .then(response =&gt; response.text())
      .then(data =&gt; {
        // 使用正则表达式来解析表格行
        const tableRows = data.match(/\|(.+?)\|(.+?)\|\s*\[下载\]\((.+?)\)\s*\|/g);

        // 遍历匹配到的行并将数据添加到表格中
        if (tableRows) {
          tableRows.forEach(row =&gt; {
            const rowData = row.match(/\|(.+?)\|(.+?)\|\s*\[下载\]\((.+?)\)\s*\|/);

            if (rowData) {
              const [_, index, fileName, downloadLink] = rowData;
              // 创建表格行
              const tableRow = dynamicTable.insertRow();
              // 创建并添加表格单元格
              const cell1 = tableRow.insertCell(0);
              const cell2 = tableRow.insertCell(1);
              const cell3 = tableRow.insertCell(2);

              cell1.textContent = index.trim();
              cell2.textContent = fileName.trim();
              cell3.innerHTML = `&lt;a href=&quot;${downloadLink.trim()}&quot; target=&quot;_blank&quot; class=&quot;mdui-btn mdui-btn-raised mdui-ripple mdui-color-theme-accent mdui-color-teal&quot;&gt;下载&lt;/a&gt;`;
            }
          });
        }
      })
      .catch(error =&gt; {
        console.error(&quot;无法获取文件内容:&quot;, error);
      });
  &lt;/script&gt;
&lt;/body&gt;

&lt;/html&gt;</code></pre><p>使用效果更佳 😀</p>]]></content:encoded>
      <pubDate>Sat, 06 Jun 2026 16:14:00 GMT</pubDate>
    </item>
    <item>
      <title>个人云游戏指南</title>
      <link>https://example.com/article/cloud-game-1</link>
      <guid isPermaLink="true">https://example.com/article/cloud-game-1</guid>
      <description>使用Cloudflare和GitHub搭建服务速度快并且免费的图床</description>
      <content:encoded><![CDATA[<h2>感谢</h2><p>1. LizardByte/Sunshine: Self-hosted game stream host for Moonlight. 一切的基础</p><p>1. TrueZhuangJia/moonlight-android-Enhanced-MultiTouch: A Mihoyo game mobile UI oriented fork. Stream the game from PC and play it via native mobile device UI. 多点触控 灵敏度调节 (触点移速调节) 的 Moonlight分支</p><p>1. 【全网首发】再也不需要启动器！自建云星穹铁道触摸操作参数出炉！_哔哩哔哩bilibili 星穹铁道触摸操作参数</p><h2>准备工作</h2><p>1. 一台电脑（被控端）</p><p>1. 一台控制端（可以是 电脑/主机）</p><p>1. Sunshine 安装包</p><p>1. Moonlight （安卓推荐使用TrueZhuanJia大佬的多点触控版）</p><p>1. 良好的网络环境</p><p>1. #可选 Tailscale （异地组网需要）</p><h2>安装</h2><p>1. 在（被控端）电脑上安装 Sunshine</p><p>1. 在打开的网页中配置用户名和密码 </p><h2>配置</h2><p>1. 在（被控端）电脑上打开 localhost:47990 （默认）</p><p>1. 点击  应用程序 → 添加新应用</p><p>1. 输入 名字和命令 （这里拿 Minecraft for Windows 举例）</p><p>1. 在命令里面填写 minecraft:  （注意后面的冒号）</p><p>1. 在退出应用时执行命令填写 taskkill /IM Minecraft.Windows.exe /F 来退出时关闭游戏</p><h2>使用</h2><p>1. 在在控制端安装 Moonlight </p><p>1. 在右上角的 加号 填写（被控端）电脑的内网IP</p><p>1. 点击 电脑 就可以参考你配置的 应用程序/游戏 了</p>]]></content:encoded>
      <pubDate>Sat, 06 Jun 2026 05:33:00 GMT</pubDate>
    </item>
    <item>
      <title>免费部署Alist </title>
      <link>https://example.com/article/free-Alist</link>
      <guid isPermaLink="true">https://example.com/article/free-Alist</guid>
      <description>使用CLAWCLOUD Run部署免费的Alist</description>
      <content:encoded><![CDATA[<h2>准备工作</h2><p>• 注册满180天的Github账号*1</p><p>• 域名（可选）*1</p><h2>打开CLAWCLOUD Run</h2><p>1. 打开ClawCloud Run产品的官网</p><p>1. 点击右上角的 Get started</p><p>1. 使用Github登录</p><p>1. 登录完成就可以选择地区 建议选择一个离你较近的服务器地区，提高访问速度。</p><h2>部署Alist</h2><p>1. 在主界面打开 “App Store”</p><p>1. 找到 &quot;Alist”</p><p>1. 在配置页面 输入密码</p><p>1. 点击 右上角的 “Deploy App” 部署</p><h2>绑定域名（可选）</h2><p>1. 点击  “App Launchpad”</p><p>1. 点击刚刚创建的 Alist  应用</p><p>1. 点击右上角的 “Update” 按钮，进入更新页面</p><p>1. 在 &quot;Network&quot; 卡片中找到并点击 “Custom Domain”</p><p>1. 在 “Custom Domain” 下面的输入框输入要绑定的域名</p><p>1. 将你的域名 CNAME 解析到 ClawCloud Run 提供的域名上</p><p>1. 划到页面顶部，点击 &quot;Update&quot; 按钮，等待片刻即可完成域名绑定</p><p>1. 等待片刻就完成了</p><h2>🎉大功告成</h2><p>使用刚才绑定的域名访问就直接访问了</p>]]></content:encoded>
      <pubDate>Sat, 06 Jun 2026 05:33:00 GMT</pubDate>
    </item>
    <item>
      <title>解决移动无法访问Cloudflare加速的网站的“玄学”问题</title>
      <link>https://example.com/article/Cloudflare-cn-1</link>
      <guid isPermaLink="true">https://example.com/article/Cloudflare-cn-1</guid>
      <description>你的网站用了 Cloudflare 加速，但用移动网络的朋友却怎么也打不开？别急，你不是一个人！还是有解决办法的。</description>
      <content:encoded><![CDATA[<h2>事情的起因</h2><p>最近我遇到了一个怪事儿：在学校的网络（移动）和流量（移动）都出现无法访问Cloudflare加速后的我的网站，但奇怪的是在家里的电信是正常访问的。</p><p>经过一番排查，我定位到问题所在：移动访问我的域名并且开启经过Cloudflare加速全国的移动的访问都会受影响。</p><h2>寻找“药方”</h2><p>于是我开始在网上到处找解决方法，最终在 LINUX DO 社区的一篇讨论帖中找到了非常有效的解决办法。<br />LINUX DO社区回复的话题</p><p>https://linux.do/t/topic/255306/12?u=xiaofeishu</p><h2>解决后</h2><p>参考帖子里大神的思路，经过我的一顿操作，在保留所有访服务正常运行把域名转到了另外的账号上。<br />再次测试，各地的访问速度检测一片“绿油油”，问题完美解决！<br /></p>]]></content:encoded>
      <pubDate>Sat, 06 Jun 2026 05:33:00 GMT</pubDate>
    </item>
    <item>
      <title>我是标题</title>
      <link>https://example.com/article/awa</link>
      <guid isPermaLink="true">https://example.com/article/awa</guid>
      <description>我是简介</description>
      <content:encoded><![CDATA[<p>我是内容</p>]]></content:encoded>
      <pubDate>Sun, 24 May 2026 04:55:00 GMT</pubDate>
    </item>
    <item>
      <title>示例文章</title>
      <link>https://example.com/article/1308fb44-cd86-80f5-8f2e-f5b891555485</link>
      <guid isPermaLink="true">https://example.com/article/1308fb44-cd86-80f5-8f2e-f5b891555485</guid>
      <description>基本段落 书中自有黄金屋，书中自有颜如玉 生活的意义并不是与他人争高下，而在于享受努力实现目标的过程，结果只是对自己行动的嘉奖。 将进酒 李白〔唐代〕参考[1] 君不见黄河之水天上来，奔流到海不复回。 君不见高堂明镜悲白发，朝如青丝暮成雪。 人生得意须尽欢，莫使金樽空对月。 天生我材必有用，千金散尽还复来。 烹羊宰牛且为乐，会须一饮三百杯。 岑夫子，丹丘生，将进酒，杯莫停。 与君歌一曲，</description>
      <content:encoded><![CDATA[<h1>基本段落</h1><blockquote>书中自有黄金屋，书中自有颜如玉</blockquote><h2>将进酒</h2><p>李白〔唐代〕参考[1]</p><p>君不见黄河之水天上来，奔流到海不复回。<br />君不见高堂明镜悲白发，朝如青丝暮成雪。<br />人生得意须尽欢，莫使金樽空对月。<br />天生我材必有用，千金散尽还复来。<br />烹羊宰牛且为乐，会须一饮三百杯。<br />岑夫子，丹丘生，将进酒，杯莫停。<br />与君歌一曲，请君为我倾耳听。<br />钟鼓馔玉不足贵，但愿长醉不愿醒。<br />古来圣贤皆寂寞，惟有饮者留其名。<br />陈王昔时宴平乐，斗酒十千恣欢谑。<br />主人何为言少钱，径须沽取对君酌。<br />五花马、千金裘，呼儿将出换美酒，与尔同销万古愁。</p><h1>特殊段落</h1><h2>1.代码</h2><pre><code style="white-space:pre;"># Bash 安装zsh
$ sudo apt install zsh

# 配置ohmyzsh
$ sh -c &quot;$(curl -fsSL &lt;https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh&gt;)&quot;

# 配置ohmyzsh插件
# zsh-autosuggestions
$ git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

# zsh-syntax-highlighting
$ git clone &lt;https://github.com/zsh-users/zsh-syntax-highlighting.git&gt; ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

// 启用插件
$ vim .zshrc
plugins=(git z zsh-autosuggestions zsh-syntax-highlighting)</code></pre><h2>2.公式</h2><p>• 数学公式</p><p>• 化学方程</p><h2>3. 图表</h2><pre><code style="white-space:pre;">graph LR;
公司架构--&gt;商务
公司架构--&gt;研发
公司架构--&gt;设计
公司架构--&gt;运营
公司架构--&gt;产品</code></pre><h2>4.下载附件</h2><h2>5. 照片集</h2><h2>6. 内嵌网页</h2><h2>7.内嵌视频</h2><h2>8.代办</h2><h2>9.折叠列表</h2><h2>10. 同步块 </h2><p>Notion支持将不同页面的块进行同步，即 SyncBlock，以下是来自另一个页面的块：</p><h1>11.多级目录</h1><p>heading标题在博客中自动转为目录</p><h2>二级目录3</h2><h2>多级列表</h2><p>• 事物的必然性</p><p>1. 事物按规律变化，也有一种不可避免的性质．这种性质就叫做必然性</p><h1>模板使用说明</h1><p>若要部署你的NotionNext项目，请复制该模板，并按照模板格式创建文章：</p><p>Notion页面中，每篇文章都将有以下属性🤔：</p><h1>评论插件</h1><p>系统支持 Waline\Giscus\Valine\GitTalk\Utterance\Cusdis\Twikoo六种评论插件，并且可以同时开启，点击评论区的Tab来体验。</p><p>按照以下教程可以开启响应的评论插件</p><h1>引用文献</h1><h3>1. 关于李白</h3>]]></content:encoded>
      <pubDate>Sat, 23 Nov 2024 07:15:00 GMT</pubDate>
    </item>
    <item>
      <title>封面测试</title>
      <link>https://example.com/article/1158fb44-cd86-80f5-98fa-f17a7e20a964</link>
      <guid isPermaLink="true">https://example.com/article/1158fb44-cd86-80f5-98fa-f17a7e20a964</guid>
      <description>111</description>
      <content:encoded><![CDATA[<p>111</p>]]></content:encoded>
      <pubDate>Sat, 19 Oct 2024 13:21:00 GMT</pubDate>
    </item>
    <item>
      <title>xxs攻击测试</title>
      <link>https://example.com/article/1818fb44-cd86-80f4-aa14-d6764a64aabd</link>
      <guid isPermaLink="true">https://example.com/article/1818fb44-cd86-80f4-aa14-d6764a64aabd</guid>
      <description>&lt;script&gt;alert(&apos;XSS&apos;)&lt;/script&gt;</description>
      <content:encoded><![CDATA[<p>&lt;script&gt;console.log(’xxs攻击测试’)&lt;/script&gt;</p><p>&lt;img src=&quot;#&quot; onerror=alert(&quot;图片XXS攻击&quot;)&gt;</p>]]></content:encoded>
      <pubDate>Sat, 30 May 2026 09:02:00 GMT</pubDate>
    </item>
    <item>
      <title>notion颜色测试</title>
      <link>https://example.com/article/1718fb44-cd86-80a8-b54c-f4b032f228c4</link>
      <guid isPermaLink="true">https://example.com/article/1718fb44-cd86-80a8-b54c-f4b032f228c4</guid>
      <description>notion颜色测试</description>
      <content:encoded><![CDATA[<p>正常 加粗 斜体 下划线 删除线  代码</p><p>灰色 加粗 斜体 下划线 删除线  代码</p><p>棕色 加粗 斜体 下划线 删除线  代码</p><p>橙色 加粗 斜体 下划线 删除线  代码</p><p>黄色 加粗 斜体 下划线 删除线  代码</p><p>绿色 加粗 斜体 下划线 删除线  代码</p><p>蓝色 加粗 斜体 下划线 删除线  代码</p><p>紫色 加粗 斜体 下划线 删除线  代码</p><p>粉色 加粗 斜体 下划线 删除线  代码</p><p>红色 加粗 斜体 下划线 删除线  代码</p>]]></content:encoded>
      <pubDate>Sat, 04 Jan 2025 09:28:00 GMT</pubDate>
    </item>
    <item>
      <title>1111</title>
      <link>https://example.com/article/1158fb44-cd86-80e5-8f30-dd6b38bcef88</link>
      <guid isPermaLink="true">https://example.com/article/1158fb44-cd86-80e5-8f30-dd6b38bcef88</guid>
      <description>无简介</description>
      <content:encoded><![CDATA[<p>无简介</p>]]></content:encoded>
      <pubDate>Fri, 04 Oct 2024 11:15:00 GMT</pubDate>
    </item>
    <item>
      <title>我是5号</title>
      <link>https://example.com/article/1128fb44-cd86-805e-8590-e2c15c2e7525</link>
      <guid isPermaLink="true">https://example.com/article/1128fb44-cd86-805e-8590-e2c15c2e7525</guid>
      <description>555</description>
      <content:encoded><![CDATA[<h1>我是h1</h1><h2>我是h2</h2><h3>我是h3</h3><p>• 我是-</p><p>• 我是-</p><p>1. 我是1.</p><p>1. 我是2.</p><p>我是链接 测试 (xiao-feishu.top)</p><p>我有特别的颜色</p><p>我也有</p><pre><code style="white-space:pre;">//我是代码</code></pre><p>我也是一种代码 但是后面不是</p><blockquote>我是引用</blockquote><p>我上面是分隔线</p><p>表格</p><pre><code style="white-space:pre;">&lt;!--显示--&gt;
&lt;p&gt;我是html代码渲染而来的&lt;/p&gt;</code></pre>]]></content:encoded>
      <pubDate>Fri, 29 Nov 2024 12:21:00 GMT</pubDate>
    </item>
  </channel>
</rss>