<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Markdown语法教程 on HpLeapfrog&#39;s Blog</title>
    <link>https://www.hpleapfrog.cn/categories/Markdown%E8%AF%AD%E6%B3%95%E6%95%99%E7%A8%8B/</link>
    <description>Recent content in Markdown语法教程 on HpLeapfrog&#39;s Blog</description>
    <generator>Hugo -- gohugo.io</generator>
    <lastBuildDate>Wed, 18 Aug 2021 04:40:23 +0000</lastBuildDate><atom:link href="https://www.hpleapfrog.cn/categories/Markdown%E8%AF%AD%E6%B3%95%E6%95%99%E7%A8%8B/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Markdown内嵌HTML标签</title>
      <link>https://www.hpleapfrog.cn/post/markdown%E5%86%85%E5%B5%8Chtml%E6%A0%87%E7%AD%BE/</link>
      <pubDate>Wed, 18 Aug 2021 04:40:23 +0000</pubDate>
      
      <guid>https://www.hpleapfrog.cn/post/markdown%E5%86%85%E5%B5%8Chtml%E6%A0%87%E7%AD%BE/</guid>
      <description>对于 Markdown 涵盖范围之外的标签，都可以直接在文件里面用 HTML 本身。如需使用 HTML，不需要额外标注这是 HTML 或是 Markdown，只需 HTML 标签添加到 Markdown 文本中即可。 行级內联标签 HTML 的行级內联标签如 &amp;lt;span&amp;gt;、&amp;lt;cite&amp;gt;、&amp;lt;del&amp;gt; 不受限制，可以在 Markdown 的段落、列表</description>
    </item>
    
    <item>
      <title>Markdown转义字符语法</title>
      <link>https://www.hpleapfrog.cn/post/Markdown%E8%BD%AC%E4%B9%89%E5%AD%97%E7%AC%A6%E8%AF%AD%E6%B3%95/</link>
      <pubDate>Wed, 18 Aug 2021 04:30:06 +0000</pubDate>
      
      <guid>https://www.hpleapfrog.cn/post/Markdown%E8%BD%AC%E4%B9%89%E5%AD%97%E7%AC%A6%E8%AF%AD%E6%B3%95/</guid>
      <description>要显示原本用于格式化 Markdown 文档的字符，请在字符前面添加反斜杠字符 () 。 \* Without the backslash, this would be a bullet in an unordered list. 渲染效果如下： * Without the backslash, this would be a bullet in an unordered list. 可做转义的字符 以下列出的字符都可以通过使用反斜杠字符从而达到转义目的。 Character Name \ backslash ` backtick (see also escaping backticks in code) * asterisk _ underscore { } curly braces [ ] brackets ( ) parentheses # pound sign + plus sign - minus sign (hyphen) . dot ! exclamation</description>
    </item>
    
    <item>
      <title>Markdown图片语法</title>
      <link>https://www.hpleapfrog.cn/post/Markdown%E5%9B%BE%E7%89%87%E8%AF%AD%E6%B3%95/</link>
      <pubDate>Wed, 18 Aug 2021 12:21:21 +0800</pubDate>
      
      <guid>https://www.hpleapfrog.cn/post/Markdown%E5%9B%BE%E7%89%87%E8%AF%AD%E6%B3%95/</guid>
      <description>要添加图像，请使用感叹号 (!), 然后在方括号增加替代文本，图片链接放在圆括号里，括号里的链接后可以增加一个可选的图片标题文本。 插入图片Markdown语法代码：![图片alt](图片链接 &amp;ldquo;图片title&amp;rdquo;)。 对应的HTML代码：&amp;lt;img src=&amp;ldquo</description>
    </item>
    
    <item>
      <title>Markdown链接语法</title>
      <link>https://www.hpleapfrog.cn/post/Markdown%E9%93%BE%E6%8E%A5%E8%AF%AD%E6%B3%95/</link>
      <pubDate>Wed, 18 Aug 2021 12:09:30 +0800</pubDate>
      
      <guid>https://www.hpleapfrog.cn/post/Markdown%E9%93%BE%E6%8E%A5%E8%AF%AD%E6%B3%95/</guid>
      <description>链接文本放在中括号内，链接地址放在后面的括号中，链接title可选。 超链接Markdown语法代码：[超链接显示名](超链接地址 &amp;ldquo;超链接title&amp;rdquo;) 对应的HTML代码：&amp;lt;a href=&amp;ldquo;超链接地址&amp;rdquo; title=&amp;ldquo;超</description>
    </item>
    
    <item>
      <title>Markdown分隔线语法</title>
      <link>https://www.hpleapfrog.cn/post/Markdown%E5%88%86%E9%9A%94%E7%BA%BF%E8%AF%AD%E6%B3%95/</link>
      <pubDate>Wed, 18 Aug 2021 12:05:24 +0800</pubDate>
      
      <guid>https://www.hpleapfrog.cn/post/Markdown%E5%88%86%E9%9A%94%E7%BA%BF%E8%AF%AD%E6%B3%95/</guid>
      <description>要创建分隔线，请在单独一行上使用三个或多个星号 (***)、破折号 (&amp;mdash;) 或下划线 (___) ，并且不能包含其他内容。 *** --- _________________ 以上三个分隔线的渲染效果看起来都一样： 分隔线（Horizontal Rule）的最佳用法 为了兼容性，请在分隔线的前后均添加空白行。 ❌Don&amp;rsquo;t do this ⭕Do this Without blank lines, this would</description>
    </item>
    
    <item>
      <title>Markdown代码语法</title>
      <link>https://www.hpleapfrog.cn/post/Markdown%E4%BB%A3%E7%A0%81%E8%AF%AD%E6%B3%95/</link>
      <pubDate>Wed, 18 Aug 2021 11:58:02 +0800</pubDate>
      
      <guid>https://www.hpleapfrog.cn/post/Markdown%E4%BB%A3%E7%A0%81%E8%AF%AD%E6%B3%95/</guid>
      <description>要将单词或短语表示为代码，请将其包裹在反引号 (`) 中。 Markdown语法 HTML 预览效果 At the command prompt, type `nano`. At the command prompt, type &amp;lt;code&amp;gt;nano&amp;lt;/code&amp;gt;. At the command prompt, type nano. 转义反引号 如果你要表示为代码的单词或短语中包含一个或多个反引号，则可以通过将单词或短语包裹在双反引号(``)中。 Markdown语法 HTML 预览效果 ``Use `code in your Markdown file.\` &amp;lt;code&amp;gt;Use `code` in your Markdown</description>
    </item>
    
    <item>
      <title>Markdown列表语法</title>
      <link>https://www.hpleapfrog.cn/post/Markdown%E5%88%97%E8%A1%A8%E8%AF%AD%E6%B3%95/</link>
      <pubDate>Sun, 15 Aug 2021 17:31:48 +0800</pubDate>
      
      <guid>https://www.hpleapfrog.cn/post/Markdown%E5%88%97%E8%A1%A8%E8%AF%AD%E6%B3%95/</guid>
      <description>可以将多个条目组织成有序或无序列表。 有序列表 要创建有序列表，请在每个列表项前添加数字并紧跟一个英文句点。数字不必按数学顺序排列，但是列表应当以数字 1 起始。 Markdown 语法HTML 预览效果 1. First item 2. Second item 3. Third item 4. Fourth item &amp;lt;ol&amp;gt; &amp;lt;li&amp;gt;First item&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;Second item&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;Third item&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;Fourth item&amp;lt;/li&amp;gt; &amp;lt;/ol&amp;gt; First itemSecond itemThird itemFourth item 1. First item 1. Second item 1. Third item 1. Fourth item &amp;lt;ol&amp;gt; &amp;lt;li&amp;gt;First item&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;Second item&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;Third item&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;Fourth item&amp;lt;/li&amp;gt; &amp;lt;/ol&amp;gt; First itemSecond itemThird</description>
    </item>
    
    <item>
      <title>Markdown引用语法</title>
      <link>https://www.hpleapfrog.cn/post/Markdown%E5%BC%95%E7%94%A8%E8%AF%AD%E6%B3%95/</link>
      <pubDate>Sun, 15 Aug 2021 17:31:48 +0800</pubDate>
      
      <guid>https://www.hpleapfrog.cn/post/Markdown%E5%BC%95%E7%94%A8%E8%AF%AD%E6%B3%95/</guid>
      <description>要创建块引用，请在段落前添加一个 &amp;gt; 符号。 &amp;gt; Dorothy followed her through many of the beautiful rooms in her castle. 渲染效果如下所示： Dorothy followed her through many of the beautiful rooms in her castle. 多个段落的块引用 块引用可以包含多个段落。为段落之间的空白行添加一个 &amp;gt; 符号。 &amp;gt; Dorothy followed her through many of the beautiful rooms in her castle. &amp;gt; &amp;gt; The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood. 渲染效果如下： Dorothy followed her through many of the</description>
    </item>
    
    <item>
      <title>Markdown强调语法</title>
      <link>https://www.hpleapfrog.cn/post/Markdown%E5%BC%BA%E8%B0%83%E8%AF%AD%E6%B3%95/</link>
      <pubDate>Sun, 15 Aug 2021 12:42:00 +0800</pubDate>
      
      <guid>https://www.hpleapfrog.cn/post/Markdown%E5%BC%BA%E8%B0%83%E8%AF%AD%E6%B3%95/</guid>
      <description>通过将文本设置为粗体或斜体来强调其重要性。 粗体（Bold） 要加粗文本，请在单词或短语的前后各添加两个星号（asterisks）或下划线（underscores）。如需加粗一个单词或短语的中间部分用以表示强调的话，请在要加粗部分的两侧各添加两个星号（asterisks）。 Markdown 语法HT</description>
    </item>
    
    <item>
      <title>Markdown换行语法</title>
      <link>https://www.hpleapfrog.cn/post/Markdown%E6%8D%A2%E8%A1%8C%E8%AF%AD%E6%B3%95/</link>
      <pubDate>Sun, 15 Aug 2021 11:57:54 +0800</pubDate>
      
      <guid>https://www.hpleapfrog.cn/post/Markdown%E6%8D%A2%E8%A1%8C%E8%AF%AD%E6%B3%95/</guid>
      <description>在一行的末尾添加两个或多个空格，然后按回车键,即可创建一个换行(&amp;lt;br&amp;gt;)。 Markdown 语法HTML 预览效果 This is the first line. And this is the second line. &amp;lt;p&amp;gt;This is the first line.&amp;lt;br&amp;gt;And this is the second line.&amp;lt;/p&amp;gt; This is the first line. And this is the second line. 换行（Line Break）的最佳用法 几乎每个 Markdown 应用程序都支持两个或多个空格进行换行，称为 结尾空格（trai</description>
    </item>
    
    <item>
      <title>Markdown 段落</title>
      <link>https://www.hpleapfrog.cn/post/Markdown%E6%AE%B5%E8%90%BD/</link>
      <pubDate>Sun, 15 Aug 2021 11:42:58 +0800</pubDate>
      
      <guid>https://www.hpleapfrog.cn/post/Markdown%E6%AE%B5%E8%90%BD/</guid>
      <description>要创建段落，请使用空白行将一行或多行文本进行分隔。 Markdown 语法HTML 预览效果 I really like using Markdown. I think I&amp;rsquo;ll use it to format all of my documents from now on. &amp;lt;p&amp;gt;I really like using Markdown.&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;I think I&amp;rsquo;ll use it to format all of my documents from now on.&amp;lt;/p&amp;gt; I really like using Markdown. I think I&amp;rsquo;ll use it to format all of my documents from now on. 段落（Paragraph）的最佳用法 不要用空格（spaces）或制表符（ tabs）缩进段落。 ❌D</description>
    </item>
    
    <item>
      <title>Markdown 标题语法</title>
      <link>https://www.hpleapfrog.cn/post/Markdown%E6%A0%87%E9%A2%98%E8%AF%AD%E6%B3%95/</link>
      <pubDate>Fri, 13 Aug 2021 18:23:53 +0800</pubDate>
      
      <guid>https://www.hpleapfrog.cn/post/Markdown%E6%A0%87%E9%A2%98%E8%AF%AD%E6%B3%95/</guid>
      <description>要创建标题，请在单词或短语前面添加井号 (#) 。# 的数量代表了标题的级别。例如，添加三个 # 表示创建一个三级标题 (&amp;lt;h3&amp;gt;) (例如：### My Header)。 Markdown语法 HTML 预览效果 # Heading level 1 &amp;lt;h1&amp;gt;Heading level 1 Heading level 1 ## Heading level 2 &amp;lt;h2&amp;gt;Heading level 2 Heading level 2 ### Heading level 3 &amp;lt;h3&amp;gt;Heading level 3 Heading level 3 #### Heading level 4 &amp;lt;h4&amp;gt;Heading level 4 Heading level 4 ##### Heading level 5 &amp;lt;h5&amp;gt;Heading level 5 Heading level 5 ###### Heading level 6 &amp;lt;h6&amp;gt;Heading level</description>
    </item>
    
  </channel>
</rss>
