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:
- first ordered list item
- another item
- unordered sub-list.
- actual numbers don't matter, it's number
- ordered sub-list
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
Post a Comment