markdown, can you insert image inbetween ordered list items?

markdown

Solution

Just indent the image and `**figure...**` stuff so that Markdown sees it as part of the bullet:

1. first
2. second

 ![](http://codekeyboards.com/img/code-104-bright-backlit.jpg)

 **figure 1** the new keyboard..wonder if it's good

3. third

Or in action:

- first

second

figure 1 the new keyboard..wonder if it's good

third

Problem

Can you insert an image in between list items? - first - second (source: codekeyboards.com) figure 1 the new keyboard..wonder if it's good - third The third is preceeded with `3.` actually, but shown as `1.`. How can I fix it?

Original source