Reputation: 405
I have some markdown in a README.md that looks like this:
# Tool
## General Info
This is a python tool that provides an interface to Kirby flash memories.
Tool functionality includes:
* Item 1
* Item 2
* Item 3
* Item 3a
* Item 3b
* Item 3c
But the result in my Bitbucket repo looks like this:
What am I doing wrong?
Upvotes: 1
Views: 713
Reputation: 8686
Add empty line after Tool functionality includes:
so that it would be
# Tool
## General Info
This is a python tool that provides an interface to Kirby flash memories.
Tool functionality includes:
* Item 1
* Item 2
* Item 3
* Item 3a
* Item 3b
* Item 3c
Upvotes: 2