{"version":"https://jsonfeed.org/version/1.1","title":"AIOVTUE","home_page_url":"https://cms-d84.pages.dev","feed_url":"https://cms-d84.pages.dev/json/","description":"<p><strong>﻿雨是神的烟花</strong></p><p><br></p><p><strong>友链：</strong></p><ul><li><a href=\"https://20030327.xyz\" rel=\"noopener noreferrer\" target=\"_blank\"><strong>AIOVTUE'S blog</strong></a> ：雨是神的烟花</li><li><a href=\"https://aiovtue.us.kg\" rel=\"noopener noreferrer\" target=\"_blank\"><strong>aiovtue's blog</strong></a> ：四分之三欢喜</li><li><a href=\"https://zxb.us.kg/\" rel=\"noopener noreferrer\" target=\"_blank\"><strong>aiovtue's notion</strong></a> ：我想要如清泉般的爱</li></ul>","icon":"https://r2public.aiovt.us.kg/cms/production/images/channel-fe8c3e91c7dc5de6790d45b3e96a3da6.png","favicon":"https://cms-d84.pages.dev/assets/default/favicon.png","authors":[{"name":"aiovtue"}],"language":"zh-cn","items":[{"id":"VVtzsF-Stlu","title":"Makedown语法","url":"https://aiovt.us.kg/i/makedownyufa-VVtzsF-Stlu/","content_html":"<p><a href=\"https://tele-tuchuang.pages.dev/file/85693f0f955b630104061.png\" rel=\"noopener noreferrer\" target=\"_blank\"><img src=\"https://tele-tuchuang.pages.dev/file/85693f0f955b630104061.png\"></a></p><h6><strong>来了，爱了，给了她一颗星星，走了</strong></h6><h3><strong>标题语法</strong></h3><p>|Markdown语法|HTML|</p><p>|—|—|</p><p>|# 一级|&lt;h1&gt;一级&lt;/h1&gt;|</p><p>|…|…|</p><p>|###### 六级|&lt;h6&gt;六级&lt;/h6&gt;|</p><h3><strong>段落语法</strong></h3><p>要创建段落，请使用空白行将一行或多行文本进行分隔&nbsp;</p><p>不要用空格（spaces）或制表符（ tabs）缩进段落</p><h3><strong>换行语法</strong></h3><p>Markdown:</p><p>在一行的末尾添加两个或多个空格，然后按回车键,即可创建一个换行&nbsp;</p><p>HTML：</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n\n&lt;p&gt;内容&lt;/p&gt;\n\n</pre><h3><strong>强调语法</strong></h3><h4><strong>粗体：</strong></h4><p>Markdown：</p><p>**内容**</p><p>__内容__</p><p>HTML:</p><p>&lt;strong&gt;内容&lt;/strong&gt;</p><h4><strong>斜体</strong></h4><p>Markdown:</p><p>*内容*</p><p>_内容_</p><p>HTML:</p><p>&lt;em&gt;内容&lt;/em&gt;</p><h3><strong>引用语法</strong></h3><p>要创建块引用，请在段落前添加一个 &gt; 符号</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n\n&gt;内容\n\n</pre><p>&gt;&gt;内容</p><h3><strong>列表语法</strong></h3><h4><strong>有序列表:</strong></h4><p>Markdown:&nbsp;</p><p>要创建有序列表，请在每个列表项前添加数字并紧跟一个英文句点。数字不必按数学顺序排列，但是列表应当以数字 1 起始</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n\n1. First item\n\n2. Second item\n\n3. Third item\n\n&nbsp; &nbsp; 1. Indented item\n\n&nbsp; &nbsp; 2. Indented item\n\n4. Fourth item\n\n</pre><p>HTML:</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n\n&lt;ol&gt;\n\n&lt;li&gt;First item&lt;/li&gt;\n\n&lt;li&gt;Second item&lt;/li&gt;\n\n&lt;li&gt;Third item\n\n&lt;ol&gt;\n\n&lt;li&gt;Indented item&lt;/li&gt;\n\n&lt;li&gt;Indented item&lt;/li&gt;\n\n&lt;/ol&gt;\n\n&lt;/li&gt;\n\n&lt;li&gt;Fourth item&lt;/li&gt;\n\n&lt;/ol&gt;\n\n</pre><h4><strong>无序列表:</strong></h4><p>Markdown:&nbsp;</p><p>要创建无序列表，请在每个列表项前面添加破折号 (-)、星号 (*) 或加号 (+) 。缩进一个或多个列表项可创建嵌套列表</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n\n- First item\n\n- Second item\n\n- Third item\n\n&nbsp; &nbsp; - Indented item\n\n&nbsp; &nbsp; - Indented item\n\n- Fourth item\n\n</pre><p>HTML:&nbsp;</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n\n&lt;ul&gt;\n\n&lt;li&gt;First item&lt;/li&gt;\n\n&lt;li&gt;Second item&lt;/li&gt;\n\n&lt;li&gt;Third item\n\n&lt;ul&gt;\n\n&lt;li&gt;Indented item&lt;/li&gt;\n\n&lt;li&gt;Indented item&lt;/li&gt;\n\n&lt;/ul&gt;\n\n&lt;/li&gt;\n\n&lt;li&gt;Fourth item&lt;/li&gt;\n\n&lt;/ul&gt;\n\n</pre><h3><strong>代码语法</strong></h3><p>要将单词或短语表示为代码，请将其包裹在反引号 (`) 中</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n\n`nano`\n\n</pre><p>如果你要表示为代码的单词或短语中包含一个或多个反引号，则可以通过将单词或短语包裹在双反引号(``)中&nbsp;&nbsp;</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n\n`` `npm` install ``\n\n</pre><h3><strong>分隔线语法</strong></h3><p>要创建分隔线，请在单独一行上使用三个或多个星号 (***)、破折号 (—) 或下划线 (___) ，并且不能包含其他内容&nbsp;</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n4\n5\n6\n7\n\n***\n\n---\n\n_________\n\n</pre><h3><strong>链接语法</strong></h3><p>链接文本放在中括号内，链接地址放在后面的括号中，链接title可选</p><p>Markdown：</p><p>[超链接显示名](超链接地址 \"超链接title\")</p><p>HTML：</p><p>&lt;a href=\"超链接地址\" title=\"超链接title\"&gt;超链接显示名&lt;/a&gt;</p><h4><strong>给链接增加 Title</strong></h4><p>链接title是当鼠标悬停在链接上时会出现的文字，这个title是可选的，它放在圆括号中链接地址后面，跟链接地址之间以空格分隔&nbsp;</p><p>[标题](https://shili.com \"一段描述\")</p><p>渲染效果如下：</p><p><a href=\"https://shili.com/\" rel=\"noopener noreferrer\" target=\"_blank\">标题</a></p><h4><strong>网址和Email地址</strong></h4><p>使用尖括号可以很方便地把URL或者email地址变成可点击的链接&nbsp;</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n4\n5\n\n&lt;https://example.com&gt; &nbsp;\n\n&lt;fake@example.com&gt;\n\n</pre><h4><strong>带格式化的链接</strong></h4><p>强调链接, 在链接语法前后增加星号。 要将链接表示为代码，请在方括号中添加反引号</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n\n**[example](https://example.com)**. &nbsp;\n\n  \n\n*[example](https://example.com)* &nbsp;\n\n  \n\n&nbsp;[`example`](#example).\n\n</pre><h4><strong>引用类型链接</strong></h4><p>引用样式链接是一种特殊的链接，它使URL在Markdown中更易于显示和阅读。参考样式链接分为两部分：与文本保持内联的部分以及存储在文件中其他位置的部分，以使文本易于阅读</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n4\n5\n6\n7\n\n[example][1]\n\n  \n\n[1]: https://example.com\n\n</pre><p>效果如下：<a href=\"https://example.com/\" rel=\"noopener noreferrer\" target=\"_blank\">example</a></p><h3><strong>图片语法</strong></h3><p>要添加图像，请使用感叹号 (!), 然后在方括号增加替代文本，图片链接放在圆括号里，括号里的链接后可以增加一个可选的图片标题文本</p><p>Markdown：![图片alt](图片链接 \"图片title\")</p><p>HTML:```</p><p><a href=\"https://bk.20030327.xyz/2024/07/16/7.Makedown%E8%AF%AD%E6%B3%95/%E5%9B%BE%E7%89%87%E9%93%BE%E6%8E%A5\" rel=\"noopener noreferrer\" target=\"_blank\"><img src=\"https://bk.20030327.xyz/2024/07/16/7.Makedown%E8%AF%AD%E6%B3%95/%E5%9B%BE%E7%89%87%E9%93%BE%E6%8E%A5\"></a>```</p><h4><strong>链接图片</strong></h4><p>给图片增加链接，请将图像的Markdown 括在方括号中，然后将链接添加在圆括号中</p><p>[![图片alt](图片链接 \"图片title\")](https://example.com)</p><p>例如:&nbsp;</p><p><a href=\"https://example.com/\" rel=\"noopener noreferrer\" target=\"_blank\"><img src=\"https://r2roim-picx.pages.dev/rest/avatar.png\"></a></p><h3><strong>表格</strong></h3><p>要添加表，请使用三个或多个连字符（—）创建每列的标题，并使用管道（|）分隔每列。您可以选择在表的任一端添加管道</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n4\n5\n6\n7\n8\n9\n\n| Syntax &nbsp; &nbsp; &nbsp;| Description |\n\n| ----------- | ----------- |\n\n| Header &nbsp; &nbsp; &nbsp;| Title &nbsp; &nbsp; &nbsp; |\n\n| Paragraph &nbsp; | Text &nbsp; &nbsp; &nbsp; &nbsp;|\n\n</pre><p>呈现的输出如下所示:&nbsp;</p><p>| Syntax&nbsp;&nbsp;&nbsp;| Description |</p><p>| ———– | ———– |</p><p>| Header&nbsp;&nbsp;&nbsp;| Title&nbsp;&nbsp;&nbsp;|</p><p>| Paragraph&nbsp;| Text&nbsp;&nbsp;&nbsp;&nbsp;|</p><h4><strong>对齐</strong></h4><p>您可以通过在标题行中的连字符的左侧，右侧或两侧添加冒号（:），将列中的文本对齐到左侧，右侧或中心</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n4\n5\n6\n7\n8\n9\n\n| Syntax &nbsp; &nbsp; &nbsp;| Description | Test Text &nbsp; &nbsp; |\n\n| :--- &nbsp; &nbsp; &nbsp; &nbsp;| &nbsp; &nbsp;:----: &nbsp; | &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;---: |\n\n| Header &nbsp; &nbsp; &nbsp;| Title &nbsp; &nbsp; &nbsp; | Here's this &nbsp; |\n\n| Paragraph &nbsp; | Text &nbsp; &nbsp; &nbsp; &nbsp;| And more &nbsp; &nbsp; &nbsp;|\n\n</pre><p>呈现的输出如下所示：&nbsp;</p><p>| Syntax&nbsp;&nbsp;&nbsp;| Description | Test Text&nbsp;&nbsp;|</p><p>| :—&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;:—-:&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;—: |</p><p>| Header&nbsp;&nbsp;&nbsp;| Title&nbsp;&nbsp;&nbsp;| Here’s this&nbsp;|</p><p>| Paragraph&nbsp;| Text&nbsp;&nbsp;&nbsp;&nbsp;| And more&nbsp;&nbsp;&nbsp;|</p><h4><strong>格式化表格中的文字</strong></h4><p>您可以在表格中设置文本格式。例如，您可以添加链接，代码（仅反引号（`）中的单词或短语，而不是代码块）和强调&nbsp;</p><p>您不能添加标题，块引用，列表，水平规则，图像或HTML标签</p><h3><strong>围栏代码块</strong></h3><p>Markdown基本语法允许您通过将行缩进四个空格或一个制表符来创建代码块。如果发现不方便，请尝试使用受保护的代码块。根据Markdown处理器或编辑器的不同，您将在代码块之前和之后的行上使用三个反引号（(```）或三个波浪号（~~~）</p><h3><strong>删除线</strong></h3><p>您可以通过在单词中心放置一条水平线来删除单词。结果看起来像这样。此功能使您可以指示某些单词是一个错误，要从文档中删除。若要删除单词，请在单词前后使用两个波浪号~~</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n\n~~世界是平坦的。~~ 我们现在知道世界是圆的\n\n</pre><p>呈现的输出如下所示：&nbsp;</p><p>世界是平坦的。&nbsp;我们现在知道世界是圆的</p><h3><strong>任务列表语法</strong></h3><p>任务列表使您可以创建带有复选框的项目列表。在支持任务列表的Markdown应用程序中，复选框将显示在内容旁边。要创建任务列表，请在任务列表项之前添加破折号-和方括号[ ]，并在[ ]前面加上空格。要选择一个复选框，请在方括号[x]之间添加 x</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n4\n5\n6\n7\n\n- [x] Write the press release\n\n- [ ] Update the website\n\n- [ ] Contact the media\n\n</pre><p>呈现的输出如下所示：&nbsp;</p><ul><li>&nbsp;Write the press release</li><li>&nbsp;Update the website</li><li>&nbsp;Contact the media</li></ul><h3><strong>自动网址链接</strong></h3><p>许多Markdown处理器会自动将URL转换为链接。这意味着如果您输入http://www.example.com,即使您未使用方括号，您的Markdown处理器也会自动将其转换为链接&nbsp;</p><p>如果您不希望自动链接URL，则可以通过将URL表示为带反引号的代码来删除该链接</p><p>http://www.example.com</p><h3><strong>脚注</strong></h3><p>脚注使您可以添加注释和参考，而不会使文档正文混乱。当您创建脚注时，带有脚注的上标数字会出现在您添加脚注参考的位置。读者可以单击链接以跳至页面底部的脚注内容</p><p>要创建脚注参考，请在方括号（[^1]）内添加插入符号和标识符。标识符可以是数字或单词，但不能包含空格或制表符。标识符仅将脚注参考与脚注本身相关联-在输出中，脚注按顺序编号</p><p>在括号内使用另一个插入符号和数字添加脚注，并用冒号和文本（[^1]: My footnote.）。您不必在文档末尾添加脚注。您可以将它们放在除列表，块引号和表之类的其他元素之外的任何位置</p><p><strong>PLAINTEXT</strong></p><pre class=\"ql-syntax\" spellcheck=\"false\">1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n\nHere's a simple footnote,[^1] and here's a longer one.[^bignote]\n\n  \n\n[^1]: This is the first footnote.\n\n  \n\n[^bignote]: Here's one with multiple paragraphs and code.\n\n  \n\n&nbsp; &nbsp; Indent paragraphs to include them in the footnote.\n\n  \n\n&nbsp; &nbsp; `{ my code }`\n\n  \n\n&nbsp; &nbsp; Add as many paragraphs as you like.\n\n</pre><p>呈现的输出如下所示：&nbsp;</p><p>Here’s a simple footnote,[^1] and here’s a longer one.[^bignote]</p><p>[^1]: This is the first footnote.</p><p>[^bignote]: Here’s one with multiple paragraphs and code.</p><p>&nbsp;&nbsp;Indent paragraphs to include them in the footnote.</p><p>&nbsp;&nbsp;&nbsp;{ my code }</p><ol><li>&nbsp;&nbsp;Add as many paragraphs as you like.</li></ol>","content_text":"[https://tele-tuchuang.pages.dev/file/85693f0f955b630104061.png]\n\n来了，爱了，给了她一颗星星，走了\n\n\n标题语法\n\n|Markdown语法|HTML|\n\n|—|—|\n\n|# 一级|<h1>一级</h1>|\n\n|…|…|\n\n|###### 六级|<h6>六级</h6>|\n\n\n段落语法\n\n要创建段落，请使用空白行将一行或多行文本进行分隔 \n\n不要用空格（spaces）或制表符（ tabs）缩进段落\n\n\n换行语法\n\nMarkdown:\n\n在一行的末尾添加两个或多个空格，然后按回车键,即可创建一个换行 \n\nHTML：\n\nPLAINTEXT\n\n1\n2\n3\n\n<p>内容</p>\n\n\n\n\n强调语法\n\n粗体：\n\nMarkdown：\n\n**内容**\n\n__内容__\n\nHTML:\n\n<strong>内容</strong>\n\n斜体\n\nMarkdown:\n\n*内容*\n\n_内容_\n\nHTML:\n\n<em>内容</em>\n\n\n引用语法\n\n要创建块引用，请在段落前添加一个 > 符号\n\nPLAINTEXT\n\n1\n2\n3\n\n>内容\n\n\n\n>>内容\n\n\n列表语法\n\n有序列表:\n\nMarkdown: \n\n要创建有序列表，请在每个列表项前添加数字并紧跟一个英文句点。数字不必按数学顺序排列，但是列表应当以数字 1 起始\n\nPLAINTEXT\n\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n\n1. First item\n\n2. Second item\n\n3. Third item\n\n    1. Indented item\n\n    2. Indented item\n\n4. Fourth item\n\n\n\nHTML:\n\nPLAINTEXT\n\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n\n<ol>\n\n<li>First item</li>\n\n<li>Second item</li>\n\n<li>Third item\n\n<ol>\n\n<li>Indented item</li>\n\n<li>Indented item</li>\n\n</ol>\n\n</li>\n\n<li>Fourth item</li>\n\n</ol>\n\n\n\n无序列表:\n\nMarkdown: \n\n要创建无序列表，请在每个列表项前面添加破折号 (-)、星号 (*) 或加号 (+) 。缩进一个或多个列表项可创建嵌套列表\n\nPLAINTEXT\n\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n\n- First item\n\n- Second item\n\n- Third item\n\n    - Indented item\n\n    - Indented item\n\n- Fourth item\n\n\n\nHTML: \n\nPLAINTEXT\n\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n\n<ul>\n\n<li>First item</li>\n\n<li>Second item</li>\n\n<li>Third item\n\n<ul>\n\n<li>Indented item</li>\n\n<li>Indented item</li>\n\n</ul>\n\n</li>\n\n<li>Fourth item</li>\n\n</ul>\n\n\n\n\n代码语法\n\n要将单词或短语表示为代码，请将其包裹在反引号 (`) 中\n\nPLAINTEXT\n\n1\n2\n3\n\n`nano`\n\n\n\n如果你要表示为代码的单词或短语中包含一个或多个反引号，则可以通过将单词或短语包裹在双反引号(``)中  \n\nPLAINTEXT\n\n1\n2\n3\n\n`` `npm` install ``\n\n\n\n\n分隔线语法\n\n要创建分隔线，请在单独一行上使用三个或多个星号 (***)、破折号 (—) 或下划线 (___) ，并且不能包含其他内容 \n\nPLAINTEXT\n\n1\n2\n3\n4\n5\n6\n7\n\n***\n\n---\n\n_________\n\n\n\n\n链接语法\n\n链接文本放在中括号内，链接地址放在后面的括号中，链接title可选\n\nMarkdown：\n\n[超链接显示名](超链接地址 \"超链接title\")\n\nHTML：\n\n<a href=\"超链接地址\" title=\"超链接title\">超链接显示名</a>\n\n给链接增加 TITLE\n\n链接title是当鼠标悬停在链接上时会出现的文字，这个title是可选的，它放在圆括号中链接地址后面，跟链接地址之间以空格分隔 \n\n[标题](https://shili.com \"一段描述\")\n\n渲染效果如下：\n\n标题\n\n网址和EMAIL地址\n\n使用尖括号可以很方便地把URL或者email地址变成可点击的链接 \n\nPLAINTEXT\n\n1\n2\n3\n4\n5\n\n<https://example.com>  \n\n<fake@example.com>\n\n\n\n带格式化的链接\n\n强调链接, 在链接语法前后增加星号。 要将链接表示为代码，请在方括号中添加反引号\n\nPLAINTEXT\n\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n\n**[example](https://example.com)**.  \n\n  \n\n*[example](https://example.com)*  \n\n  \n\n [`example`](#example).\n\n\n\n引用类型链接\n\n引用样式链接是一种特殊的链接，它使URL在Markdown中更易于显示和阅读。参考样式链接分为两部分：与文本保持内联的部分以及存储在文件中其他位置的部分，以使文本易于阅读\n\nPLAINTEXT\n\n1\n2\n3\n4\n5\n6\n7\n\n[example][1]\n\n  \n\n[1]: https://example.com\n\n\n\n效果如下：example\n\n\n图片语法\n\n要添加图像，请使用感叹号 (!), 然后在方括号增加替代文本，图片链接放在圆括号里，括号里的链接后可以增加一个可选的图片标题文本\n\nMarkdown：![图片alt](图片链接 \"图片title\")\n\nHTML:```\n\n[https://bk.20030327.xyz/2024/07/16/7.Makedown%E8%AF%AD%E6%B3%95/%E5%9B%BE%E7%89%87%E9%93%BE%E6%8E%A5]```\n\n链接图片\n\n给图片增加链接，请将图像的Markdown 括在方括号中，然后将链接添加在圆括号中\n\n[![图片alt](图片链接 \"图片title\")](https://example.com)\n\n例如: \n\n[https://r2roim-picx.pages.dev/rest/avatar.png]\n\n\n表格\n\n要添加表，请使用三个或多个连字符（—）创建每列的标题，并使用管道（|）分隔每列。您可以选择在表的任一端添加管道\n\nPLAINTEXT\n\n1\n2\n3\n4\n5\n6\n7\n8\n9\n\n| Syntax      | Description |\n\n| ----------- | ----------- |\n\n| Header      | Title       |\n\n| Paragraph   | Text        |\n\n\n\n呈现的输出如下所示: \n\n| Syntax   | Description |\n\n| ———– | ———– |\n\n| Header   | Title   |\n\n| Paragraph | Text    |\n\n对齐\n\n您可以通过在标题行中的连字符的左侧，右侧或两侧添加冒号（:），将列中的文本对齐到左侧，右侧或中心\n\nPLAINTEXT\n\n1\n2\n3\n4\n5\n6\n7\n8\n9\n\n| Syntax      | Description | Test Text     |\n\n| :---        |    :----:   |          ---: |\n\n| Header      | Title       | Here's this   |\n\n| Paragraph   | Text        | And more      |\n\n\n\n呈现的输出如下所示： \n\n| Syntax   | Description | Test Text  |\n\n| :—    |  :—-: |     —: |\n\n| Header   | Title   | Here’s this |\n\n| Paragraph | Text    | And more   |\n\n格式化表格中的文字\n\n您可以在表格中设置文本格式。例如，您可以添加链接，代码（仅反引号（`）中的单词或短语，而不是代码块）和强调 \n\n您不能添加标题，块引用，列表，水平规则，图像或HTML标签\n\n\n围栏代码块\n\nMarkdown基本语法允许您通过将行缩进四个空格或一个制表符来创建代码块。如果发现不方便，请尝试使用受保护的代码块。根据Markdown处理器或编辑器的不同，您将在代码块之前和之后的行上使用三个反引号（(```）或三个波浪号（~~~）\n\n\n删除线\n\n您可以通过在单词中心放置一条水平线来删除单词。结果看起来像这样。此功能使您可以指示某些单词是一个错误，要从文档中删除。若要删除单词，请在单词前后使用两个波浪号~~\n\nPLAINTEXT\n\n1\n2\n3\n\n~~世界是平坦的。~~ 我们现在知道世界是圆的\n\n\n\n呈现的输出如下所示： \n\n世界是平坦的。 我们现在知道世界是圆的\n\n\n任务列表语法\n\n任务列表使您可以创建带有复选框的项目列表。在支持任务列表的Markdown应用程序中，复选框将显示在内容旁边。要创建任务列表，请在任务列表项之前添加破折号-和方括号[\n]，并在[ ]前面加上空格。要选择一个复选框，请在方括号[x]之间添加 x\n\nPLAINTEXT\n\n1\n2\n3\n4\n5\n6\n7\n\n- [x] Write the press release\n\n- [ ] Update the website\n\n- [ ] Contact the media\n\n\n\n呈现的输出如下所示： \n\n *  Write the press release\n *  Update the website\n *  Contact the media\n\n\n自动网址链接\n\n许多Markdown处理器会自动将URL转换为链接。这意味着如果您输入http://www.example.com,即使您未使用方括号，您的Markdown处理器也会自动将其转换为链接 \n\n如果您不希望自动链接URL，则可以通过将URL表示为带反引号的代码来删除该链接\n\nhttp://www.example.com\n\n\n脚注\n\n脚注使您可以添加注释和参考，而不会使文档正文混乱。当您创建脚注时，带有脚注的上标数字会出现在您添加脚注参考的位置。读者可以单击链接以跳至页面底部的脚注内容\n\n要创建脚注参考，请在方括号（[^1]）内添加插入符号和标识符。标识符可以是数字或单词，但不能包含空格或制表符。标识符仅将脚注参考与脚注本身相关联-在输出中，脚注按顺序编号\n\n在括号内使用另一个插入符号和数字添加脚注，并用冒号和文本（[^1]: My\nfootnote.）。您不必在文档末尾添加脚注。您可以将它们放在除列表，块引号和表之类的其他元素之外的任何位置\n\nPLAINTEXT\n\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n\nHere's a simple footnote,[^1] and here's a longer one.[^bignote]\n\n  \n\n[^1]: This is the first footnote.\n\n  \n\n[^bignote]: Here's one with multiple paragraphs and code.\n\n  \n\n    Indent paragraphs to include them in the footnote.\n\n  \n\n    `{ my code }`\n\n  \n\n    Add as many paragraphs as you like.\n\n\n\n呈现的输出如下所示： \n\nHere’s a simple footnote,[^1] and here’s a longer one.[^bignote]\n\n[^1]: This is the first footnote.\n\n[^bignote]: Here’s one with multiple paragraphs and code.\n\n  Indent paragraphs to include them in the footnote.\n\n   { my code }\n\n 1.   Add as many paragraphs as you like.","date_published":"2024-07-13T16:39:04.720Z","_microfeed":{"web_url":"https://cms-d84.pages.dev/i/makedown-VVtzsF-Stlu/","json_url":"https://cms-d84.pages.dev/i/VVtzsF-Stlu/json/","rss_url":"https://cms-d84.pages.dev/i/VVtzsF-Stlu/rss/","guid":"VVtzsF-Stlu","status":"published","itunes:episodeType":"full","date_published_short":"Sat Jul 13 2024","date_published_ms":1720888744720}},{"id":"MRuc461QmAf","title":"群辉相册","url":"https://aiovt.us.kg/i/xiangce-MRuc461QmAf/","content_html":"<h6><img src=\"https://tele-tuchuang.pages.dev/file/83e21fb93e624bb57a6cf.png\"></h6><h6>每个人都是生命中的过路人，而我也在旅途中</h6><h4>一、黑群晖Synology Photos人脸识别补丁</h4><p>1、先安装synology photos 套件</p><p>2、安装synology photos后先进入套件中心，停用synology photos套件</p><p>3、打开ssh软件，通过ssh进入，输入以下命令</p><pre class=\"ql-syntax\" spellcheck=\"false\">sudo -i\nsynopkgctl stop SynologyPhotos\nwget http://code.imnks.com/face/PatchELFSharp\nchmod +x PatchELFSharp\n# support face and concept\n\n./PatchELFSharp “/var/packages/SynologyPhotos/target/usr/lib/libsynophoto-plugin-platform.so.1.0” “_ZN9synophoto6plugin8platform20IsSupportedIENetworkEv” “B8 00 00 00 00 C3”\n# force to support concept\n\n./PatchELFSharp “/var/packages/SynologyPhotos/target/usr/lib/libsynophoto-plugin-platform.so.1.0” “_ZN9synophoto6plugin8platform18IsSupportedConceptEv” “B8 01 00 00 00 C3”\n# force no Gpu\n\n./PatchELFSharp “/var/packages/SynologyPhotos/target/usr/lib/libsynophoto-plugin-platform.so.1.0” “_ZN9synophoto6plugin8platform23IsSupportedIENetworkGpuEv” “B8 00 00 00 00 C3”\nwget http://code.imnks.com/face/1.6.1-0641/libsynophoto-plugin-platform.so.1.0 -O /var/packages/SynologyPhotos/target/usr/lib/libsynophoto-plugin-platform.so.1.0 &amp;&amp; synopkgctl stop SynologyPhotos &amp;&amp; synopkgctl start SynologyPhotos\nsynopkgctl start SynologyPhotos\n</pre><p>4、SSH输入以上代码后，重新启动synology photos套件</p><p>5、进入synology photos套件点击重新索引</p><p>6、解决缩略图不显示：</p><p>通过社群安装ffmpeg6.0套件</p><p>安装后，进入ssh，运行一下代码</p><pre class=\"ql-syntax\" spellcheck=\"false\">mv /usr/bin/ffmpeg /usr/bin/ffmpeg.bak\nln -s /var/packages/ffmpeg/target/bin/ffmpeg /usr/bin/ffmpeg\n</pre><p>运行以上代码后，“控制面板”-“共享文件夹”，为“photo”和“homes”设置“sc-ffmpge”的“可读写”访问权限；登录Synology Photos，进入“设置”-“个人”，点击“重建索引”</p><h4>二、激活Advanced Media Extensions</h4><p>1、安装 Advanced Media Extensions 套件</p><p>2、打开控制面板，并进入任务计划</p><p>打开自定义的脚本，在用户定义脚本里面输入：</p><p>DSM7.1</p><p>3.0.1.2004 版本AME破解补丁</p><pre class=\"ql-syntax\" spellcheck=\"false\">curl -skL http://jimostudio.link:9020/chfs/shared/AME/AME712004.py | python\n</pre><p>DSM7.2</p><p>3.1.0.3005 版本AME破解补丁</p><pre class=\"ql-syntax\" spellcheck=\"false\">curl -skL http://jimostudio.link:9020/chfs/shared/AME/AME723005.py | python\n</pre><p><img src=\"https://telegraph-image-82u.pages.dev/file/e132a7a6edf0effa8d767.png\"></p><p><img src=\"https://telegraph-image-82u.pages.dev/file/62152c79c8597f6c27ddd.png\"></p><p><img src=\"https://telegraph-image-82u.pages.dev/file/fd4a9badf5bb2562992e7.png\"></p><p>3、运行脚本</p><p>4、运行脚本后，等大概1-3分钟，打开 Advanced Media Extensions 套件 可以看到已经激活</p>","content_text":"[HTTPS://TELE-TUCHUANG.PAGES.DEV/FILE/83E21FB93E624BB57A6CF.PNG]\n\n每个人都是生命中的过路人，而我也在旅途中\n\n一、黑群晖SYNOLOGY PHOTOS人脸识别补丁\n\n1、先安装synology photos 套件\n\n2、安装synology photos后先进入套件中心，停用synology photos套件\n\n3、打开ssh软件，通过ssh进入，输入以下命令\n\nsudo -i\nsynopkgctl stop SynologyPhotos\nwget http://code.imnks.com/face/PatchELFSharp\nchmod +x PatchELFSharp\n# support face and concept\n\n./PatchELFSharp “/var/packages/SynologyPhotos/target/usr/lib/libsynophoto-plugin-platform.so.1.0” “_ZN9synophoto6plugin8platform20IsSupportedIENetworkEv” “B8 00 00 00 00 C3”\n# force to support concept\n\n./PatchELFSharp “/var/packages/SynologyPhotos/target/usr/lib/libsynophoto-plugin-platform.so.1.0” “_ZN9synophoto6plugin8platform18IsSupportedConceptEv” “B8 01 00 00 00 C3”\n# force no Gpu\n\n./PatchELFSharp “/var/packages/SynologyPhotos/target/usr/lib/libsynophoto-plugin-platform.so.1.0” “_ZN9synophoto6plugin8platform23IsSupportedIENetworkGpuEv” “B8 00 00 00 00 C3”\nwget http://code.imnks.com/face/1.6.1-0641/libsynophoto-plugin-platform.so.1.0 -O /var/packages/SynologyPhotos/target/usr/lib/libsynophoto-plugin-platform.so.1.0 && synopkgctl stop SynologyPhotos && synopkgctl start SynologyPhotos\nsynopkgctl start SynologyPhotos\n\n\n4、SSH输入以上代码后，重新启动synology photos套件\n\n5、进入synology photos套件点击重新索引\n\n6、解决缩略图不显示：\n\n通过社群安装ffmpeg6.0套件\n\n安装后，进入ssh，运行一下代码\n\nmv /usr/bin/ffmpeg /usr/bin/ffmpeg.bak\nln -s /var/packages/ffmpeg/target/bin/ffmpeg /usr/bin/ffmpeg\n\n\n运行以上代码后，“控制面板”-“共享文件夹”，为“photo”和“homes”设置“sc-ffmpge”的“可读写”访问权限；登录Synology\nPhotos，进入“设置”-“个人”，点击“重建索引”\n\n二、激活ADVANCED MEDIA EXTENSIONS\n\n1、安装 Advanced Media Extensions 套件\n\n2、打开控制面板，并进入任务计划\n\n打开自定义的脚本，在用户定义脚本里面输入：\n\nDSM7.1\n\n3.0.1.2004 版本AME破解补丁\n\ncurl -skL http://jimostudio.link:9020/chfs/shared/AME/AME712004.py | python\n\n\nDSM7.2\n\n3.1.0.3005 版本AME破解补丁\n\ncurl -skL http://jimostudio.link:9020/chfs/shared/AME/AME723005.py | python\n\n\n[https://telegraph-image-82u.pages.dev/file/e132a7a6edf0effa8d767.png]\n\n[https://telegraph-image-82u.pages.dev/file/62152c79c8597f6c27ddd.png]\n\n[https://telegraph-image-82u.pages.dev/file/fd4a9badf5bb2562992e7.png]\n\n3、运行脚本\n\n4、运行脚本后，等大概1-3分钟，打开 Advanced Media Extensions 套件 可以看到已经激活","date_published":"2024-07-13T16:37:50.691Z","_microfeed":{"web_url":"https://cms-d84.pages.dev/i/群辉相册-MRuc461QmAf/","json_url":"https://cms-d84.pages.dev/i/MRuc461QmAf/json/","rss_url":"https://cms-d84.pages.dev/i/MRuc461QmAf/rss/","guid":"MRuc461QmAf","status":"published","itunes:episodeType":"full","date_published_short":"Sat Jul 13 2024","date_published_ms":1720888670691}},{"id":"pU7arWzgHku","title":"玩客云刷机","url":"https://aiovt.us.kg/i/shuaji-pU7arWzgHku/","content_html":"<h6><img src=\"https://tele-tuchuang.pages.dev/file/0bc67778e2b275dbe371d.png\"></h6><h6>你配得上世间所有的美好，我将携漫天星辰向你涌来</h6><h4>一、<a href=\"https://github.com/hzyitc/armbian-onecloud\" rel=\"noopener noreferrer\" target=\"_blank\">固件下载</a></h4><h4>固件版本说明</h4><ul><li>current（推荐）：稳定版，一般指代当前官方推荐的稳定版本，经过了充分的测试和优化，确保兼容性和稳定性较高</li><li>Edge：开发版，一般是让高级用户或开发者提前体验新功能，并提供反馈，包含了最新的功能更新或者实验性特性，但相对稳定性可能会较低，可能存在未知的问题</li><li>带“burn”（推荐）：在Armbian或类似的基于Linux的嵌入式设备固件发布中，带有“burn”字样的文件通常是指直接烧录（Flash）用的镜像文件。这类文件往往是针对特定硬件设计的，可以直接通过SD卡、USB闪存或其他方式一次性将整个操作系统及配置写入</li><li>设备内部的存储介质（如eMMC、NAND Flash等）。它们通常是经过特殊处理的二进制映像文件，包含了引导加载程序、内核以及根文件系统等必要的系统组件</li><li>带“minimal”（按需）：有\"minimal\"字样的刷机包通常指的是一个精简版或最小化安装版本的固件。这种固件镜像包含了运行操作系统和特定应用所必需的最基础软件包，去除了不必要的服务、图形界面和其他非核心组件</li></ul><h4>二、刷机方法</h4><ul><li>打开USB_Burning_Tool软件</li><li>左上角文件&gt;导入烧录包，选择下载的固件，点击开始</li><li>双公头USB数据线，一头插靠近HDMI接口USB，一头电脑USB</li><li>短接刷机点通电到3%再松手，直到刷机完成</li><li>刷机完成后立马点击停止后断电，拔下数据线</li></ul><p>用户名root，密码1234，登录后提示需要更改密root的初始密码，自行设置，更改完密码后，会提示创建账户，我们直接Ctrl+C取消</p><h4>三、时区设置</h4><p>设置时区</p><pre class=\"ql-syntax\" spellcheck=\"false\">cp /usr/share/zoneinfo/Asia/Shanghai  /etc/localtime\n</pre><p>查看时间</p><pre class=\"ql-syntax\" spellcheck=\"false\">date -R\n</pre><h4>四、 一键更换国内源</h4><pre class=\"ql-syntax\" spellcheck=\"false\">bash &lt;(curl -sSL https://linuxmirrors.cn/main.sh)\n</pre><h4>五、灯光控制</h4><pre class=\"ql-syntax\" spellcheck=\"false\">echo 0 &gt;/sys/class/leds/onecloud\\:blue\\:alive/brightness\necho 0 &gt;/sys/class/leds/onecloud\\:green\\:alive/brightness\necho 0 &gt;/sys/class/leds/onecloud\\:red\\:alive/brightness\n</pre><h4>六、软件安装</h4><h5>casaos</h5><pre class=\"ql-syntax\" spellcheck=\"false\">wget -qO- https://get.casaos.io | bash\n</pre><h5>Qbittorrent</h5><pre class=\"ql-syntax\" spellcheck=\"false\">sudo apt install qbittorrent-nox\n</pre><p>执行以下命令，通过文本编辑器打开qBittorrent服务文件</p><pre class=\"ql-syntax\" spellcheck=\"false\">vim /etc/systemd/system/qbittorrent.service\n</pre><p>输入以下内容（配置信息）后保存</p><pre class=\"ql-syntax\" spellcheck=\"false\">[Unit]\nDescription=qBittorrent Daemon Service\nAfter=network.target\n[Service]\nUser=root\nExecStart=/usr/bin/qbittorrent-nox\nExecStop=/usr/bin/killall -w qbittorrent-nox\n[Install]\nWantedBy=multi-user.target\n</pre><p>执行以下命令，更新刚刚配置的服务，设置开机启动以及现在启动该服务</p><pre class=\"ql-syntax\" spellcheck=\"false\">sudo systemctl daemon-reload\nsudo systemctl enable qbittorrent.service\nsudo systemctl start qbittorrent.service\n</pre><h5>Cpolar</h5><pre class=\"ql-syntax\" spellcheck=\"false\">curl -L https://www.cpolar.com/static/downloads/install-release-cpolar.sh | sudo bash\ncpolar version\n</pre><p>登录cpolar官网后台，点击左侧的验证，查看自己的认证token，之后将token贴在命令行里</p><pre class=\"ql-syntax\" spellcheck=\"false\">cpolar authtoken xxxxxxx\n</pre><p>开机自启</p><pre class=\"ql-syntax\" spellcheck=\"false\">sudo systemctl enable cpolar\nsudo systemctl start cpolar\n</pre><h5>openwrt</h5><p>镜像推荐：</p><pre class=\"ql-syntax\" spellcheck=\"false\">jyhking/onecloud:1.1\n \nsulinggg/openwrt:arm_cortex-a5_vfpv4\n \nxuanaimai/onecloud:21-05-29\n</pre><p>打开网卡混杂模式</p><pre class=\"ql-syntax\" spellcheck=\"false\">ip link set eth0 promisc on\n</pre><p>创建OpenWrt网络(自行替换网段，网关)</p><pre class=\"ql-syntax\" spellcheck=\"false\">docker network create -d macvlan --subnet=192.168.10.0/24 --gateway=192.168.10.1 -o parent=eth0 openwrt\n</pre><p>下载镜像包至root</p><pre class=\"ql-syntax\" spellcheck=\"false\">wget https://dl.openwrt.ai/releases/targets/meson/meson8b/openwrt-02.01.2024-meson-meson8b-thunder-onecloud-rootfs.tar.gz\n</pre><p>生成镜像</p><pre class=\"ql-syntax\" spellcheck=\"false\">docker import openwrt-02.01.2024-meson-meson8b-thunder-onecloud-rootfs.tar.gz onecloud/openwrt\n</pre><p>安装并启动容器</p><pre class=\"ql-syntax\" spellcheck=\"false\">docker run --restart always --name openwrt -d --network openwrt --privileged onecloud/openwrt /sbin/init\n</pre><p>修改默认IP</p><pre class=\"ql-syntax\" spellcheck=\"false\">#进入容器\n \ndocker exec -it openwrt bash\n \n#打开网络配置文件\n \nnano /etc/config/network\n \n#重启网络\n \n/etc/init.d/network restart\n</pre><h5>ddns-to</h5><pre class=\"ql-syntax\" spellcheck=\"false\">docker run -d --name=ddnsto --restart always --network host -e TOKEN=&lt;自己的token&gt; -e DEVICE_IDX=0 linkease/ddnsto:3.0.0\n</pre><h5>1panel</h5><pre class=\"ql-syntax\" spellcheck=\"false\">curl -sSL https://resource.fit2cloud.com/1panel/package/quick_start.sh -o quick_start.sh &amp;&amp; sudo bash quick_start.sh\nCopy\n</pre><h5>docker</h5><pre class=\"ql-syntax\" spellcheck=\"false\">apt install docker.io\n</pre><h4>七、端口：</h4><ul><li>CasaOS：80</li><li>Cpolar：9200</li><li>qBittorrent ：8080</li></ul><p><br></p>","content_text":"[HTTPS://TELE-TUCHUANG.PAGES.DEV/FILE/0BC67778E2B275DBE371D.PNG]\n\n你配得上世间所有的美好，我将携漫天星辰向你涌来\n\n一、固件下载\n\n固件版本说明\n\n * current（推荐）：稳定版，一般指代当前官方推荐的稳定版本，经过了充分的测试和优化，确保兼容性和稳定性较高\n * Edge：开发版，一般是让高级用户或开发者提前体验新功能，并提供反馈，包含了最新的功能更新或者实验性特性，但相对稳定性可能会较低，可能存在未知的问题\n * 带“burn”（推荐）：在Armbian或类似的基于Linux的嵌入式设备固件发布中，带有“burn”字样的文件通常是指直接烧录（Flash）用的镜像文件。这类文件往往是针对特定硬件设计的，可以直接通过SD卡、USB闪存或其他方式一次性将整个操作系统及配置写入\n * 设备内部的存储介质（如eMMC、NAND Flash等）。它们通常是经过特殊处理的二进制映像文件，包含了引导加载程序、内核以及根文件系统等必要的系统组件\n * 带“minimal”（按需）：有\"minimal\"字样的刷机包通常指的是一个精简版或最小化安装版本的固件。这种固件镜像包含了运行操作系统和特定应用所必需的最基础软件包，去除了不必要的服务、图形界面和其他非核心组件\n\n二、刷机方法\n\n * 打开USB_Burning_Tool软件\n * 左上角文件>导入烧录包，选择下载的固件，点击开始\n * 双公头USB数据线，一头插靠近HDMI接口USB，一头电脑USB\n * 短接刷机点通电到3%再松手，直到刷机完成\n * 刷机完成后立马点击停止后断电，拔下数据线\n\n用户名root，密码1234，登录后提示需要更改密root的初始密码，自行设置，更改完密码后，会提示创建账户，我们直接Ctrl+C取消\n\n三、时区设置\n\n设置时区\n\ncp /usr/share/zoneinfo/Asia/Shanghai  /etc/localtime\n\n\n查看时间\n\ndate -R\n\n\n四、 一键更换国内源\n\nbash <(curl -sSL https://linuxmirrors.cn/main.sh)\n\n\n五、灯光控制\n\necho 0 >/sys/class/leds/onecloud\\:blue\\:alive/brightness\necho 0 >/sys/class/leds/onecloud\\:green\\:alive/brightness\necho 0 >/sys/class/leds/onecloud\\:red\\:alive/brightness\n\n\n六、软件安装\n\nCASAOS\n\nwget -qO- https://get.casaos.io | bash\n\n\nQBITTORRENT\n\nsudo apt install qbittorrent-nox\n\n\n执行以下命令，通过文本编辑器打开qBittorrent服务文件\n\nvim /etc/systemd/system/qbittorrent.service\n\n\n输入以下内容（配置信息）后保存\n\n[Unit]\nDescription=qBittorrent Daemon Service\nAfter=network.target\n[Service]\nUser=root\nExecStart=/usr/bin/qbittorrent-nox\nExecStop=/usr/bin/killall -w qbittorrent-nox\n[Install]\nWantedBy=multi-user.target\n\n\n执行以下命令，更新刚刚配置的服务，设置开机启动以及现在启动该服务\n\nsudo systemctl daemon-reload\nsudo systemctl enable qbittorrent.service\nsudo systemctl start qbittorrent.service\n\n\nCPOLAR\n\ncurl -L https://www.cpolar.com/static/downloads/install-release-cpolar.sh | sudo bash\ncpolar version\n\n\n登录cpolar官网后台，点击左侧的验证，查看自己的认证token，之后将token贴在命令行里\n\ncpolar authtoken xxxxxxx\n\n\n开机自启\n\nsudo systemctl enable cpolar\nsudo systemctl start cpolar\n\n\nOPENWRT\n\n镜像推荐：\n\njyhking/onecloud:1.1\n \nsulinggg/openwrt:arm_cortex-a5_vfpv4\n \nxuanaimai/onecloud:21-05-29\n\n\n打开网卡混杂模式\n\nip link set eth0 promisc on\n\n\n创建OpenWrt网络(自行替换网段，网关)\n\ndocker network create -d macvlan --subnet=192.168.10.0/24 --gateway=192.168.10.1 -o parent=eth0 openwrt\n\n\n下载镜像包至root\n\nwget https://dl.openwrt.ai/releases/targets/meson/meson8b/openwrt-02.01.2024-meson-meson8b-thunder-onecloud-rootfs.tar.gz\n\n\n生成镜像\n\ndocker import openwrt-02.01.2024-meson-meson8b-thunder-onecloud-rootfs.tar.gz onecloud/openwrt\n\n\n安装并启动容器\n\ndocker run --restart always --name openwrt -d --network openwrt --privileged onecloud/openwrt /sbin/init\n\n\n修改默认IP\n\n#进入容器\n \ndocker exec -it openwrt bash\n \n#打开网络配置文件\n \nnano /etc/config/network\n \n#重启网络\n \n/etc/init.d/network restart\n\n\nDDNS-TO\n\ndocker run -d --name=ddnsto --restart always --network host -e TOKEN=<自己的token> -e DEVICE_IDX=0 linkease/ddnsto:3.0.0\n\n\n1PANEL\n\ncurl -sSL https://resource.fit2cloud.com/1panel/package/quick_start.sh -o quick_start.sh && sudo bash quick_start.sh\nCopy\n\n\nDOCKER\n\napt install docker.io\n\n\n七、端口：\n\n * CasaOS：80\n * Cpolar：9200\n * qBittorrent ：8080\n\n\n","date_published":"2024-07-13T16:36:46.446Z","_microfeed":{"web_url":"https://cms-d84.pages.dev/i/玩客云刷机-pU7arWzgHku/","json_url":"https://cms-d84.pages.dev/i/pU7arWzgHku/json/","rss_url":"https://cms-d84.pages.dev/i/pU7arWzgHku/rss/","guid":"pU7arWzgHku","status":"published","itunes:episodeType":"full","date_published_short":"Sat Jul 13 2024","date_published_ms":1720888606446}},{"id":"5YQmEMZDpnN","title":"linux换源","url":"https://aiovt.us.kg/i/linuxhuanyuan-5YQmEMZDpnN/","content_html":"<h6><img src=\"https://tele-tuchuang.pages.dev/file/42e617dc41311c23da5e8.png\"></h6><h6>总要热爱点什么，不能被这无聊的生活吞没</h6><h4>一、一键更换国内源</h4><pre class=\"ql-syntax\" spellcheck=\"false\">bash &lt;(curl -sSL https://linuxmirrors.cn/main.sh)\n</pre><h4>二、armbian：</h4><pre class=\"ql-syntax\" spellcheck=\"false\">vim /etc/apt/sources.list \n</pre><h5>清华</h5><pre class=\"ql-syntax\" spellcheck=\"false\">deb https://mirrors.tuna.tsinghua.edu.cn/armbian buster main utils\ndeb-src https://mirrors.tuna.tsinghua.edu.cn/armbian buster main utils\n\ndeb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main non-free contrib\ndeb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main non-free contrib\ndeb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main non-free contrib\ndeb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main non-free contrib\ndeb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main non-free contrib\ndeb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main non-free contrib\n\ndeb http://security.debian.org/ buster/updates main\ndeb-src http://security.debian.org/ buster/updates main\n</pre><h5>阿里</h5><pre class=\"ql-syntax\" spellcheck=\"false\">deb http://mirrors.aliyun.com/debian/ bullseye main contrib non-free\n#deb-src http://mirrors.aliyun.com/debian/ bullseye main contrib non-free\n\ndeb http://mirrors.aliyun.com/debian/ bullseye-updates main contrib non-free\n#deb-src http://mirrors.aliyun.com/debian/ bullseye-updates main contrib non-free\n\ndeb http://mirrors.aliyun.com/debian/ bullseye-backports main contrib non-free\n#deb-src http://mirrors.aliyun.com/debian/ bullseye-backports main contrib non-free\n\ndeb http://mirrors.aliyun.com/debian-security/ bullseye-security main contrib non-free\n#deb-src http://mirrors.aliyun.com/debian-security/ bullseye-security main contrib non-free\n\n</pre><h4>三、ubuntu：</h4><pre class=\"ql-syntax\" spellcheck=\"false\">vim /etc/apt/sources.list\n########   Ubuntu22.04LTS 清华镜像源   ###############\n# 默认注释了源码镜像以提高 apt update 速度，如有需要可自行取消注释\ndeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse\n# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse\ndeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse\n# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse\ndeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse\n# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse\ndeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse\n# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse\n \n# 预发布软件源，不建议启用\n# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse\n# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse\n########   Ubuntu22.04 阿里云镜像源   ###############\ndeb http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse\n########   Ubuntu22.04 中科大镜像源   ###############\ndeb https://mirrors.ustc.edu.cn/ubuntu/ jammy main restricted universe multiverse\ndeb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy main restricted universe multiverse\ndeb https://mirrors.ustc.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse\ndeb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse\ndeb https://mirrors.ustc.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse\ndeb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse\ndeb https://mirrors.ustc.edu.cn/ubuntu/ jammy-security main restricted universe multiverse\ndeb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-security main restricted universe multiverse\ndeb https://mirrors.ustc.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse\ndeb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse\n########   Ubuntu22.04 网易163镜像源   ###############\ndeb http://mirrors.163.com/ubuntu/ jammy main restricted universe multiverse\ndeb http://mirrors.163.com/ubuntu/ jammy-security main restricted universe multiverse\ndeb http://mirrors.163.com/ubuntu/ jammy-updates main restricted universe multiverse\ndeb http://mirrors.163.com/ubuntu/ jammy-proposed main restricted universe multiverse\ndeb http://mirrors.163.com/ubuntu/ jammy-backports main restricted universe multiverse\ndeb-src http://mirrors.163.com/ubuntu/ jammy main restricted universe multiverse\ndeb-src http://mirrors.163.com/ubuntu/ jammy-security main restricted universe multiverse\ndeb-src http://mirrors.163.com/ubuntu/ jammy-updates main restricted universe multiverse\ndeb-src http://mirrors.163.com/ubuntu/ jammy-proposed main restricted universe multiverse\ndeb-src http://mirrors.163.com/ubuntu/ jammy-backports main restricted universe multiverse\nCopy\nsudo apt update\nsudo apt upgrade\n</pre><p><br></p>","content_text":"[HTTPS://TELE-TUCHUANG.PAGES.DEV/FILE/42E617DC41311C23DA5E8.PNG]\n\n总要热爱点什么，不能被这无聊的生活吞没\n\n一、一键更换国内源\n\nbash <(curl -sSL https://linuxmirrors.cn/main.sh)\n\n\n二、ARMBIAN：\n\nvim /etc/apt/sources.list \n\n\n清华\n\ndeb https://mirrors.tuna.tsinghua.edu.cn/armbian buster main utils\ndeb-src https://mirrors.tuna.tsinghua.edu.cn/armbian buster main utils\n\ndeb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main non-free contrib\ndeb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main non-free contrib\ndeb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main non-free contrib\ndeb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main non-free contrib\ndeb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main non-free contrib\ndeb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main non-free contrib\n\ndeb http://security.debian.org/ buster/updates main\ndeb-src http://security.debian.org/ buster/updates main\n\n\n阿里\n\ndeb http://mirrors.aliyun.com/debian/ bullseye main contrib non-free\n#deb-src http://mirrors.aliyun.com/debian/ bullseye main contrib non-free\n\ndeb http://mirrors.aliyun.com/debian/ bullseye-updates main contrib non-free\n#deb-src http://mirrors.aliyun.com/debian/ bullseye-updates main contrib non-free\n\ndeb http://mirrors.aliyun.com/debian/ bullseye-backports main contrib non-free\n#deb-src http://mirrors.aliyun.com/debian/ bullseye-backports main contrib non-free\n\ndeb http://mirrors.aliyun.com/debian-security/ bullseye-security main contrib non-free\n#deb-src http://mirrors.aliyun.com/debian-security/ bullseye-security main contrib non-free\n\n\n\n三、UBUNTU：\n\nvim /etc/apt/sources.list\n########   Ubuntu22.04LTS 清华镜像源   ###############\n# 默认注释了源码镜像以提高 apt update 速度，如有需要可自行取消注释\ndeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse\n# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse\ndeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse\n# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse\ndeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse\n# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse\ndeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse\n# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse\n \n# 预发布软件源，不建议启用\n# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse\n# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse\n########   Ubuntu22.04 阿里云镜像源   ###############\ndeb http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse\n########   Ubuntu22.04 中科大镜像源   ###############\ndeb https://mirrors.ustc.edu.cn/ubuntu/ jammy main restricted universe multiverse\ndeb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy main restricted universe multiverse\ndeb https://mirrors.ustc.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse\ndeb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse\ndeb https://mirrors.ustc.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse\ndeb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse\ndeb https://mirrors.ustc.edu.cn/ubuntu/ jammy-security main restricted universe multiverse\ndeb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-security main restricted universe multiverse\ndeb https://mirrors.ustc.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse\ndeb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse\n########   Ubuntu22.04 网易163镜像源   ###############\ndeb http://mirrors.163.com/ubuntu/ jammy main restricted universe multiverse\ndeb http://mirrors.163.com/ubuntu/ jammy-security main restricted universe multiverse\ndeb http://mirrors.163.com/ubuntu/ jammy-updates main restricted universe multiverse\ndeb http://mirrors.163.com/ubuntu/ jammy-proposed main restricted universe multiverse\ndeb http://mirrors.163.com/ubuntu/ jammy-backports main restricted universe multiverse\ndeb-src http://mirrors.163.com/ubuntu/ jammy main restricted universe multiverse\ndeb-src http://mirrors.163.com/ubuntu/ jammy-security main restricted universe multiverse\ndeb-src http://mirrors.163.com/ubuntu/ jammy-updates main restricted universe multiverse\ndeb-src http://mirrors.163.com/ubuntu/ jammy-proposed main restricted universe multiverse\ndeb-src http://mirrors.163.com/ubuntu/ jammy-backports main restricted universe multiverse\nCopy\nsudo apt update\nsudo apt upgrade\n\n\n\n","date_published":"2024-07-13T16:35:28.479Z","_microfeed":{"web_url":"https://cms-d84.pages.dev/i/linux-5YQmEMZDpnN/","json_url":"https://cms-d84.pages.dev/i/5YQmEMZDpnN/json/","rss_url":"https://cms-d84.pages.dev/i/5YQmEMZDpnN/rss/","guid":"5YQmEMZDpnN","status":"published","itunes:episodeType":"full","date_published_short":"Sat Jul 13 2024","date_published_ms":1720888528479}},{"id":"dHvPxAZ_oi-","title":"docker换源","url":"https://aiovt.us.kg/i/dockerhuanyuan-dHvPxAZ_oi-/","content_html":"<h6><img src=\"https://tele-tuchuang.pages.dev/file/1516896592fa75b268dc7.png\"></h6><h6>一点星光，在心上就能反射出太阳</h6><h4>一、snap版docker</h4><p>修改：</p><pre class=\"ql-syntax\" spellcheck=\"false\">vim /var/snap/docker/current/config/daemon.json\n</pre><h4>二、apt版docker</h4><pre class=\"ql-syntax\" spellcheck=\"false\">vim /etc/docker/daemon.json\n</pre><p>docker镜像：</p><p>阿里云</p><pre class=\"ql-syntax\" spellcheck=\"false\">{\n  \"registry-mirrors\": [\"https://dg1w94af.mirror.aliyuncs.com\"]\n}\n</pre><p>其他</p><pre class=\"ql-syntax\" spellcheck=\"false\">{\n    \"registry-mirrors\" : [\n             \"https://registry.docker-cn.com\",\n             \"https://docker.mirrors.ustc.edu.cn\",\n             \"http://hub-mirror.c.163.com\",\n             \"https://cr.console.aliyun.com/\"\n  ]\n}\n{\n    \"registry-mirrors\":[\n             \"https://hub-mirror.c.163.com/\",\n             \"https://docker.mirrors.ustc.edu.cn/\"\n                        ]\n}\n\n</pre><p>重启docker以及daemon</p><pre class=\"ql-syntax\" spellcheck=\"false\">systemctl daemon-reload\nsystemctl restart docker\n\n</pre>","content_text":"[HTTPS://TELE-TUCHUANG.PAGES.DEV/FILE/1516896592FA75B268DC7.PNG]\n\n一点星光，在心上就能反射出太阳\n\n一、SNAP版DOCKER\n\n修改：\n\nvim /var/snap/docker/current/config/daemon.json\n\n\n二、APT版DOCKER\n\nvim /etc/docker/daemon.json\n\n\ndocker镜像：\n\n阿里云\n\n{\n  \"registry-mirrors\": [\"https://dg1w94af.mirror.aliyuncs.com\"]\n}\n\n\n其他\n\n{\n    \"registry-mirrors\" : [\n             \"https://registry.docker-cn.com\",\n             \"https://docker.mirrors.ustc.edu.cn\",\n             \"http://hub-mirror.c.163.com\",\n             \"https://cr.console.aliyun.com/\"\n  ]\n}\n{\n    \"registry-mirrors\":[\n             \"https://hub-mirror.c.163.com/\",\n             \"https://docker.mirrors.ustc.edu.cn/\"\n                        ]\n}\n\n\n\n重启docker以及daemon\n\nsystemctl daemon-reload\nsystemctl restart docker\n\n","date_published":"2024-07-13T16:33:10.960Z","_microfeed":{"web_url":"https://cms-d84.pages.dev/i/docker-dHvPxAZ_oi-/","json_url":"https://cms-d84.pages.dev/i/dHvPxAZ_oi-/json/","rss_url":"https://cms-d84.pages.dev/i/dHvPxAZ_oi-/rss/","guid":"dHvPxAZ_oi-","status":"published","itunes:episodeType":"full","date_published_short":"Sat Jul 13 2024","date_published_ms":1720888390960}},{"id":"CfOK-RQQF-r","title":"小雅安装","url":"https://aiovt.us.kg/i/anz-CfOK-RQQF-r/","content_html":"<h6><img src=\"https://tele-tuchuang.pages.dev/file/29d5649b2a58ffc430d40.png\"></h6><h6>梦如同黎明的泡沫一样逐渐消失</h6><h4>一、<a href=\"https://alist.nn.ci/zh/guide/drivers/aliyundrive.html#%E5%88%B7%E6%96%B0%E4%BB%A4%E7%89%8C\" rel=\"noopener noreferrer\" target=\"_blank\">阿里云盘token获取</a></h4><h4>二、<a href=\"https://alist.nn.ci/tool/aliyundrive/request.html\" rel=\"noopener noreferrer\" target=\"_blank\">阿里云盘opentoken获取</a></h4><h4>三、一键安装：</h4><p>一键安装和更新容器，标准模式，打开端口 5678</p><pre class=\"ql-syntax\" spellcheck=\"false\">bash -c \"$(curl http://docker.xiaoya.pro/update_new.sh)\"\n</pre><p>一键安装和更新容器，host模式（推荐，软路由和NAS上更少网络故障，打开端口 5678）</p><pre class=\"ql-syntax\" spellcheck=\"false\">bash -c \"$(curl http://docker.xiaoya.pro/update_new.sh)\" -s host\n</pre><h4>四、docker compose安装：</h4><pre class=\"ql-syntax\" spellcheck=\"false\">version: '3'\n\nservices:\n  xiaoya:\n    image: xiaoyaliu/alist\n    container_name: xiaoya\n    restart: unless-stopped\n    ports:\n      - 8765:80\n    volumes:\n      - ./data:/data\n</pre><p>执行如下命令：</p><pre class=\"ql-syntax\" spellcheck=\"false\"># 新建文件夹 xiaoya 和 子目录\nmkdir -p /volume1/docker/xiaoya/data\n\n# 进入 xiaoya 目录\ncd /volume1/docker/xiaoya\n\n# 将 mytoken.txt 、 myopentoken.txt 、 temp_transfer_folder_id.txt 放入 /data 目录\n\n# 将 docker-compose.yml 放入当前目录\n\n# 一键启动\ndocker-compose up -d\nCopy\n</pre><p>webdav 账号密码 用户: guest 密码: guest_Api789</p>","content_text":"[HTTPS://TELE-TUCHUANG.PAGES.DEV/FILE/29D5649B2A58FFC430D40.PNG]\n\n梦如同黎明的泡沫一样逐渐消失\n\n一、阿里云盘TOKEN获取\n\n二、阿里云盘OPENTOKEN获取\n\n三、一键安装：\n\n一键安装和更新容器，标准模式，打开端口 5678\n\nbash -c \"$(curl http://docker.xiaoya.pro/update_new.sh)\"\n\n\n一键安装和更新容器，host模式（推荐，软路由和NAS上更少网络故障，打开端口 5678）\n\nbash -c \"$(curl http://docker.xiaoya.pro/update_new.sh)\" -s host\n\n\n四、DOCKER COMPOSE安装：\n\nversion: '3'\n\nservices:\n  xiaoya:\n    image: xiaoyaliu/alist\n    container_name: xiaoya\n    restart: unless-stopped\n    ports:\n      - 8765:80\n    volumes:\n      - ./data:/data\n\n\n执行如下命令：\n\n# 新建文件夹 xiaoya 和 子目录\nmkdir -p /volume1/docker/xiaoya/data\n\n# 进入 xiaoya 目录\ncd /volume1/docker/xiaoya\n\n# 将 mytoken.txt 、 myopentoken.txt 、 temp_transfer_folder_id.txt 放入 /data 目录\n\n# 将 docker-compose.yml 放入当前目录\n\n# 一键启动\ndocker-compose up -d\nCopy\n\n\nwebdav 账号密码 用户: guest 密码: guest_Api789","date_published":"2024-07-13T16:30:24.355Z","_microfeed":{"web_url":"https://cms-d84.pages.dev/i/小雅安装-CfOK-RQQF-r/","json_url":"https://cms-d84.pages.dev/i/CfOK-RQQF-r/json/","rss_url":"https://cms-d84.pages.dev/i/CfOK-RQQF-r/rss/","guid":"CfOK-RQQF-r","status":"published","itunes:episodeType":"full","date_published_short":"Sat Jul 13 2024","date_published_ms":1720888224355}},{"id":"mAihFlJLq3e","title":"HELLO WORLD","attachments":[{"url":"https://r2public.aiovt.us.kg/cms/production/media/image-67d1798eb535038dd8c3497f5c449f3a.png","mime_type":"image/png","size_in_byte":1995920}],"url":"https://aiovt.us.kg/i/hello-worl-mAihFlJLq3e/","content_html":"<p>### 风里有花香，身边有最爱的人</p>","content_text":"### 风里有花香，身边有最爱的人","banner_image":"https://r2public.aiovt.us.kg/cms/production/media/image-67d1798eb535038dd8c3497f5c449f3a.png","date_published":"2024-07-11T15:09:36.964Z","_microfeed":{"is_audio":false,"is_document":false,"is_external_url":false,"is_video":false,"is_image":true,"web_url":"https://cms-d84.pages.dev/i/hello-world-mAihFlJLq3e/","json_url":"https://cms-d84.pages.dev/i/mAihFlJLq3e/json/","rss_url":"https://cms-d84.pages.dev/i/mAihFlJLq3e/rss/","guid":"mAihFlJLq3e","status":"published","itunes:episodeType":"full","date_published_short":"Thu Jul 11 2024","date_published_ms":1720710576964}}],"_microfeed":{"microfeed_version":"0.1.2","base_url":"https://cms-d84.pages.dev","categories":[],"subscribe_methods":[{"name":"RSS","type":"rss","url":"https://cms-d84.pages.dev/rss/","image":"https://cms-d84.pages.dev/assets/brands/subscribe/rss.png","enabled":true,"editable":false,"id":"WhebmgOVHXi"},{"name":"JSON","type":"json","url":"https://cms-d84.pages.dev/json/","image":"https://cms-d84.pages.dev/assets/brands/subscribe/json.png","enabled":true,"editable":false,"id":"_qkaic4IKh7"}],"description_text":"﻿雨是神的烟花\n\n\n\n\n友链：\n\n * AIOVTUE'S blog ：雨是神的烟花\n * aiovtue's blog ：四分之三欢喜\n * aiovtue's notion ：我想要如清泉般的爱","copyright":"©2024","itunes:type":"episodic","items_sort_order":"newest_first"}}