markdown的代码
要将单词或短语表示为代码,请将其括在勾号(</code><span>)中。</span> <table class="table table-bordered"> <...
要将单词或短语表示为代码,请将其括在勾号(</code><span>)中。</span> <table class="table table-bordered"> <...
代码块通常缩进四个空格或一个制表符。当它们在列表中时,将它们缩进八个空格或两个选项卡。 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...
块引用可以包含多个段落。>在段落之间的空白行上添加一个。 > Dorothy followed her through many of the beautiful rooms in her castle. > > T...
要同时突出显示带有粗体和斜体的文本,请在单词或短语的前后添加三个星号或下划线。 Markdown HTML 渲染输出 This text is ***really important***. This text is <strong&...
要加粗文本,请在单词或短语的前后添加两个星号或下划线。要加粗一个单词的中部以强调,请在字母周围添加两个星号,且各空格之间不加空格。 Markdown HTML 渲染输出 I just love **bold text**. I just l...
要创建换行符(<br>),请以两个或多个空格结束一行,然后键入return。 Markdown HTML 渲染输出 This is the first line. And this is the second line. <...
或者,在文本下方的行上,添加任意数量的==标题级别1的–字符或标题级别2的字符。 Markdown HTML 渲染输出 Heading level 1 =============== <h1>Heading leve...