How to type the dot in github markdown list? -


i try use markdown format write list in readme file.

but in the github flavoured markdown, using dot "⋅" not period(".") indicate align list.

how type such dot regular us/english keyboard? tried copy , paste github, it's not work.

thanks.

have tried * (asterisk) points? "dots" in link spaces. put in manual can visualize spaces, not literal "dot" character.

like:

  • this point
    • this subpoint
  • this point.
    • this subpoint

what mean is:

  1. first ordered list item
  2. another item
    • unordered sub-list.
  3. actual numbers don't matter, it's number
    1. ordered sub-list
  4. and item.

    you can have indented paragraphs within list items. notice blank line above, , leading spaces (at least one, we'll use 3 here align raw markdown).

    to have line break without paragraph, need use 2 trailing spaces.⋅⋅ note line separate, within same paragraph.⋅⋅ (this contrary typical gfm line break behaviour, trailing spaces not required.)

    • unordered list can use asterisks
    • or minuses
    • or pluses

here's raw code:

1. first ordered list item 2. item   * unordered sub-list.  1. actual numbers don't matter, it's number   1. ordered sub-list 4. , item.     can have indented paragraphs within list items. notice blank line above, , leading spaces (at least one, we'll use 3 here align raw markdown).     have line break without paragraph, need use 2 trailing spaces.⋅⋅    note line separate, within same paragraph.⋅⋅    (this contrary typical gfm line break behaviour, trailing spaces not required.)  * unordered list can use asterisks - or minuses + or pluses 

Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -