]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/defintion_lists_appear_to_be_disabled.mdwn
c9756617df765609c158a4b34a671e17b91d33a3
[ikiwiki.git] / doc / bugs / defintion_lists_appear_to_be_disabled.mdwn
1 Adding text of the format 
2
3     Apple
4     :   Pomaceous fruit of plants of the genus Malus in 
5         the family Rosaceae.
6     :   An american computer company.
7
8     Orange
9     :   The fruit of an evergreen tree of the genus Citrus.
10
11 Does not result in expected HTML as described in the [MultiMarkdown Syntax Guide](http://fletcherpenney.net/multimarkdown/users_guide/multimarkdown_syntax_guide/):
12
13 Should be 
14
15     <dl xmlns="http://www.w3.org/1999/xhtml">
16     <dt>Apple</dt>
17      <dd>
18        <p>Pomaceous fruit of plants of the genus Malus in 
19           the family Rosaceae.</p>
20      </dd>
21      <dd>
22        <p>An american computer company.</p>
23     </dd>
24     <dt>Orange</dt>
25      <dd>
26       <p>The fruit of an evergreen tree of the genus Citrus.</p>
27      </dd>
28     </dl>
29
30 But instead it gives:
31
32     <p>Apple
33      :   Pomaceous fruit of plants of the genus Malus in 
34          the family Rosaceae.
35      :   An american computer company.</p>
36
37     <p>Orange
38     :   The fruit of an evergreen tree of the genus Citrus.</p>