markdown的代码块
代码块通常缩进四个空格或一个制表符。当它们在列表中时,将它们缩进八个空格或两个选项卡。 1. Open the file. 2. Find the following code block on line 21: <html> ...
代码块通常缩进四个空格或一个制表符。当它们在列表中时,将它们缩进八个空格或两个选项卡。 1. Open the file. 2. Find the following code block on line 21: <html> ...
要在保留列表连续性的同时在列表中添加另一个元素,请将该元素缩进四个空格或一个制表符,如以下示例所示。 段落 * This is the first list item. * Here's the second list item. I ne...
要创建无序列表,请在订单项前添加破折号(-),星号(*)或加号(+)。缩进一个或多个项目以创建嵌套列表。 Markdown HTML 渲染输出 - First item - Second item - Third item - Fourth...
要创建有序列表,请在订单项中添加数字和句点。数字不必按数字顺序排列,但列表应以数字开头。 Markdown HTML 渲染输出 1. First item 2. Second item 3. Third item 4. Fourth ite...
块引用可以包含其他Markdown格式的元素。并非所有元素都可以使用-您需要进行实验以查看哪些元素有效。 > #### The quarterly results look great! > > - Revenue was...
块引用可以嵌套。>>在要嵌套的段落前面添加一个。 > Dorothy followed her through many of the beautiful rooms in her castle. > >>...
块引用可以包含多个段落。>在段落之间的空白行上添加一个。 > Dorothy followed her through many of the beautiful rooms in her castle. > > T...
要创建blockquote,请>在段落前面添加一个。 > Dorothy followed her through many of the beautiful rooms in her castle. 呈现的输出如下所示: 桃乐...
要同时突出显示带有粗体和斜体的文本,请在单词或短语的前后添加三个星号或下划线。 Markdown HTML 渲染输出 This text is ***really important***. This text is <strong&...
要斜体显示文本,请在单词或短语的前后添加一个星号或下划线。要斜体突出单词的中间部分,请在字母周围添加一个星号,中间不要带空格。 Markdown HTML 渲染输出 Italicized text is the *cat’s m...