<?xml version='1.0' encoding='UTF-8'?>
<?xml-stylesheet href="/rss/stylesheet/" type="text/xsl"?>
<rss xmlns:content='http://purl.org/rss/1.0/modules/content/' xmlns:taxo='http://purl.org/rss/1.0/modules/taxonomy/' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:itunes='http://www.itunes.com/dtds/podcast-1.0.dtd' xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:atom='http://www.w3.org/2005/Atom' xmlns:podbridge='http://www.podbridge.com/podbridge-ad.dtd' version='2.0'>
<channel>
  <title>AIOVTUE</title>
  <language>zh-cn</language>
  <generator>microfeed.org</generator>
  <itunes:type>episodic</itunes:type>
  <itunes:explicit>false</itunes:explicit>
  <atom:link rel="self" href="https://cms-d84.pages.dev/rss/" type="application/rss+xml"/>
  <link>https://cms-d84.pages.dev</link>
  <description>
    <![CDATA[<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>]]>
  </description>
  <itunes:author>aiovtue</itunes:author>
  <itunes:image href="https://r2public.aiovt.us.kg/cms/production/images/channel-fe8c3e91c7dc5de6790d45b3e96a3da6.png"/>
  <image>
    <title>AIOVTUE</title>
    <url>https://r2public.aiovt.us.kg/cms/production/images/channel-fe8c3e91c7dc5de6790d45b3e96a3da6.png</url>
    <link>https://cms-d84.pages.dev</link>
  </image>
  <copyright>©2024</copyright>
  <item>
    <title>Makedown语法</title>
    <guid>VVtzsF-Stlu</guid>
    <pubDate>Sat, 13 Jul 2024 16:39:04 GMT</pubDate>
    <itunes:explicit>false</itunes:explicit>
    <description>
      <![CDATA[<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
2
3

&lt;p&gt;内容&lt;/p&gt;

</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
2
3

&gt;内容

</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
2
3
4
5
6
7
8
9
10
11
12
13

1. First item

2. Second item

3. Third item

&nbsp; &nbsp; 1. Indented item

&nbsp; &nbsp; 2. Indented item

4. Fourth item

</pre><p>HTML:</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

&lt;ol&gt;

&lt;li&gt;First item&lt;/li&gt;

&lt;li&gt;Second item&lt;/li&gt;

&lt;li&gt;Third item

&lt;ol&gt;

&lt;li&gt;Indented item&lt;/li&gt;

&lt;li&gt;Indented item&lt;/li&gt;

&lt;/ol&gt;

&lt;/li&gt;

&lt;li&gt;Fourth item&lt;/li&gt;

&lt;/ol&gt;

</pre><h4><strong>无序列表:</strong></h4><p>Markdown:&nbsp;</p><p>要创建无序列表，请在每个列表项前面添加破折号 (-)、星号 (*) 或加号 (+) 。缩进一个或多个列表项可创建嵌套列表</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7
8
9
10
11
12
13

- First item

- Second item

- Third item

&nbsp; &nbsp; - Indented item

&nbsp; &nbsp; - Indented item

- Fourth item

</pre><p>HTML:&nbsp;</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

&lt;ul&gt;

&lt;li&gt;First item&lt;/li&gt;

&lt;li&gt;Second item&lt;/li&gt;

&lt;li&gt;Third item

&lt;ul&gt;

&lt;li&gt;Indented item&lt;/li&gt;

&lt;li&gt;Indented item&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;li&gt;Fourth item&lt;/li&gt;

&lt;/ul&gt;

</pre><h3><strong>代码语法</strong></h3><p>要将单词或短语表示为代码，请将其包裹在反引号 (`) 中</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3

`nano`

</pre><p>如果你要表示为代码的单词或短语中包含一个或多个反引号，则可以通过将单词或短语包裹在双反引号(``)中&nbsp;&nbsp;</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3

`` `npm` install ``

</pre><h3><strong>分隔线语法</strong></h3><p>要创建分隔线，请在单独一行上使用三个或多个星号 (***)、破折号 (—) 或下划线 (___) ，并且不能包含其他内容&nbsp;</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7

***

---

_________

</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
2
3
4
5

&lt;https://example.com&gt; &nbsp;

&lt;fake@example.com&gt;

</pre><h4><strong>带格式化的链接</strong></h4><p>强调链接, 在链接语法前后增加星号。 要将链接表示为代码，请在方括号中添加反引号</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7
8
9
10
11

**[example](https://example.com)**. &nbsp;

  

*[example](https://example.com)* &nbsp;

  

&nbsp;[`example`](#example).

</pre><h4><strong>引用类型链接</strong></h4><p>引用样式链接是一种特殊的链接，它使URL在Markdown中更易于显示和阅读。参考样式链接分为两部分：与文本保持内联的部分以及存储在文件中其他位置的部分，以使文本易于阅读</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7

[example][1]

  

[1]: https://example.com

</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
2
3
4
5
6
7
8
9

| Syntax &nbsp; &nbsp; &nbsp;| Description |

| ----------- | ----------- |

| Header &nbsp; &nbsp; &nbsp;| Title &nbsp; &nbsp; &nbsp; |

| Paragraph &nbsp; | Text &nbsp; &nbsp; &nbsp; &nbsp;|

</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
2
3
4
5
6
7
8
9

| Syntax &nbsp; &nbsp; &nbsp;| Description | Test Text &nbsp; &nbsp; |

| :--- &nbsp; &nbsp; &nbsp; &nbsp;| &nbsp; &nbsp;:----: &nbsp; | &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;---: |

| Header &nbsp; &nbsp; &nbsp;| Title &nbsp; &nbsp; &nbsp; | Here's this &nbsp; |

| Paragraph &nbsp; | Text &nbsp; &nbsp; &nbsp; &nbsp;| And more &nbsp; &nbsp; &nbsp;|

</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
2
3

~~世界是平坦的。~~ 我们现在知道世界是圆的

</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
2
3
4
5
6
7

- [x] Write the press release

- [ ] Update the website

- [ ] Contact the media

</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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

Here's a simple footnote,[^1] and here's a longer one.[^bignote]

  

[^1]: This is the first footnote.

  

[^bignote]: Here's one with multiple paragraphs and code.

  

&nbsp; &nbsp; Indent paragraphs to include them in the footnote.

  

&nbsp; &nbsp; `{ my code }`

  

&nbsp; &nbsp; Add as many paragraphs as you like.

</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>]]>
    </description>
    <link>https://aiovt.us.kg/i/makedownyufa-VVtzsF-Stlu/</link>
    <itunes:episodeType>full</itunes:episodeType>
  </item>
</channel>
</rss>