FIX markup
[docutils.git] / test / functional / input / compact_lists.txt
blobec13a97be3b6b4f7ad527c1b3edb5c57a6963021
1 * This is an ordinary simple bullet list.
2 * It should be made compact (<p> & </p> tags omitted).
4 **********
6 * This is a bullet list that is not simple.
8   There are multiple paragraphs in some items.
10 * It should not be made compact.
12 * Even though some items may have only one paragraph.
14 **********
16 .. class:: open
18 * This is a simple bullet list, but class="open" is set.
19 * It should not be made compact.
21 **********
23 .. class:: compact
25 * This is a bullet list that is not simple.
27   There are multiple paragraphs in some items.
29 * However, the class="compact" setting will cause 
30   all first paragraph's <p> & </p> tags to be omitted.
32 * Items with multiple paragraphs will not appear changed.
34 * Items may have one paragraph, or multiple.
36   Items with multiple paragraphs will still be followed
37   by vertical whitespace because of the later paragraphs.
39 * The effect is interesting.