Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/github/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在github标记列表中键入点?_Github_Github Flavored Markdown - Fatal编程技术网

如何在github标记列表中键入点?

如何在github标记列表中键入点?,github,github-flavored-markdown,Github,Github Flavored Markdown,我尝试使用降价格式在自述文件中写入列表 但在中,它使用点”⋅"非句点(“)以指示列表的对齐 如何从普通的美式/英式键盘上键入这样的点?我试图复制并粘贴到github,但这不起作用 谢谢。你试过*(星号)你的点了吗?链接中的“点”只是空格。他们把它放在手册中,这样你就可以看到空格,而不是文字上的“点”字符 比如: 这是一点 这是一个子点 这是另一点。 这是另一个子点 他们的意思是: 第一个排序的列表项 另一项 无序子列表 实际数字并不重要,只是它是一个数字 有序子列表 还有一项

我尝试使用降价格式在自述文件中写入列表

但在中,它使用点
”⋅"非句点(
)以指示列表的对齐

如何从普通的美式/英式键盘上键入这样的点?我试图复制并粘贴到github,但这不起作用

谢谢。

你试过*(星号)你的点了吗?链接中的“点”只是空格。他们把它放在手册中,这样你就可以看到空格,而不是文字上的“点”字符

比如:

  • 这是一点
    • 这是一个子点
  • 这是另一点。
    • 这是另一个子点
他们的意思是:

  • 第一个排序的列表项
  • 另一项
    • 无序子列表
  • 实际数字并不重要,只是它是一个数字
  • 有序子列表
  • 还有一项

    在列表项中可以有正确的缩进段落。注意上面的空行和前行空格(至少有一个,但是我们将用三来对齐原始标记)。

    要在没有段落的情况下换行,需要使用两个尾随空格。⋅⋅ 请注意,这一行是分开的,但在同一段中。⋅⋅ (这与不需要尾随空格的典型GFM断线行为相反。)

    • 无序列表可以使用星号
    • 或不足
    • 还是优点
  • 以下是原始代码:

    1. First ordered list item
    2. Another item
      * Unordered sub-list. 
    1. Actual numbers don't matter, just that it's a number
      1. Ordered sub-list
    4. And another item.
    
       You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
    
       To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅
       Note that this line is separate, but within the same paragraph.⋅⋅
       (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
    
    * Unordered list can use asterisks
    - Or minuses
    + Or pluses
    

    只需点击空格多个空格,即可实现软中断; (·)只是为了记谱


    这是一种工作方式,但我希望使用那种特殊的样式,在积分前不要有任何点或数字。非常感谢,我误解了这一点。