{"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}}],"_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"}}