I want to format a list with a few paragraphs between items. Unfortunately, the numbering gets restarted. I want:
1. item1
Paragraph1...
<!-- language: lang-java -->
Object o = new Object();
2. item2
Here's how it comes out:
- item1
Paragraph1...
Object o = new Object();
- item2
Not only numbering is lost, but also indentation. I know that HTML <ol></ol> to which this is formatted is not supposed for big list items, but I can't see any other way to do it, except with putting the HTML tags myself. The numbering is OK, but this destroys formatting completely:
- item1 Paragraph1... Object o = new Object();
- item2
Please help.