How do you indent a bulleted list in a README file using GitHub flavored markdown?

MarkupGithub Flavored-MarkdownReadme

Markup Problem Overview


I know I can use asterisks to do something like this:

  • list item1
  • list item2

but I was expecting something like ** to indent it one further. Is it possible?

Markup Solutions


Solution 1 - Markup

Sub Lists in GFM(github-flavored-markdown) are done the ways represented below.

- Item 1
- Item 2
- Item 3
  - Sub Item 1
  - Sub Item 2
   
#^ two spaces

OR

* Item 1
* Item 2
* Item 3
  * Sub Item A
  * Sub Item B

Refer to this Cheatsheet

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAlaa AwadView Question on Stackoverflow
Solution 1 - MarkupAdiView Answer on Stackoverflow