Reputation: 181
I am doing a list and in the middle in the list I need to put an image. The problem is, that it messes my list up. I have something like this
1. element 1
2. element 2

3. element 3
but it displays something like this
- element 1
- element 2
image
- element 3
I need it to display something like this:
element 1
element 2
image
element 3
does anyone of you know how to fix this?
Upvotes: 0
Views: 24
Reputation: 42647
If you desire your image to be on a separate line by itself, then you need to have it surrounded by blank lines. And if you want to nest an item in a list item, then you must indent that item one level (4 spaces):
1. element 1
2. element 2

3. element 3
The above renders as:
element 1
element 2
image
element 3
Upvotes: 2