Lost
Lost

Reputation: 181

Images are messing with my lists

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
![](imagesurl)
3. element 3

but it displays something like this

  1. element 1
  2. element 2

image

  1. element 3

I need it to display something like this:

  1. element 1

  2. element 2

    image

  3. element 3

does anyone of you know how to fix this?

Upvotes: 0

Views: 24

Answers (1)

Waylan
Waylan

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

    ![](imagesurl)

3. element 3

The above renders as:

  1. element 1

  2. element 2

    image

  3. element 3

Upvotes: 2

Related Questions