]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/defintion_lists_appear_to_be_disabled.mdwn
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
[git.ikiwiki.info.git] / doc / bugs / defintion_lists_appear_to_be_disabled.mdwn
1 Adding text of the format 
3     Apple
4     :   Pomaceous fruit of plants of the genus Malus in 
5         the family Rosaceae.
6     :   An american computer company.
8     Orange
9     :   The fruit of an evergreen tree of the genus Citrus.
11 Does not result in expected HTML as described in the [MultiMarkdown Syntax Guide](http://fletcherpenney.net/multimarkdown/users_guide/multimarkdown_syntax_guide/):
13 Should be 
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>
30 But instead it gives:
32     <p>Apple
33      :   Pomaceous fruit of plants of the genus Malus in 
34          the family Rosaceae.
35      :   An american computer company.</p>
37     <p>Orange
38     :   The fruit of an evergreen tree of the genus Citrus.</p>