Peter Kapteyn
Peter Kapteyn

Reputation: 405

How do I properly initialize bulleted list in bitbucket markdown

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: enter image description here

What am I doing wrong?

Upvotes: 1

Views: 713

Answers (1)

Alexey R.
Alexey R.

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

Related Questions