aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/defintion_lists_appear_to_be_disabled.mdwn
blob: 6dac9c8b8c513ece39092985af3b4517aa4a3b70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Adding text of the format 

    Apple
    :   Pomaceous fruit of plants of the genus Malus in 
        the family Rosaceae.
    :   An american computer company.

    Orange
    :   The fruit of an evergreen tree of the genus Citrus.

Does not result in expected HTML as described in the [MultiMarkdown Syntax Guide](http://fletcherpenney.net/multimarkdown/users_guide/multimarkdown_syntax_guide/):

Should be 

    <dl xmlns="http://www.w3.org/1999/xhtml">
    <dt>Apple</dt>
     <dd>
       <p>Pomaceous fruit of plants of the genus Malus in 
          the family Rosaceae.</p>
     </dd>
     <dd>
       <p>An american computer company.</p>
    </dd>
    <dt>Orange</dt>
     <dd>
      <p>The fruit of an evergreen tree of the genus Citrus.</p>
     </dd>
    </dl>

But instead it gives:

    <p>Apple
     :   Pomaceous fruit of plants of the genus Malus in 
         the family Rosaceae.
     :   An american computer company.</p>

    <p>Orange
    :   The fruit of an evergreen tree of the genus Citrus.</p>

> ikiwiki's markdown support does not include support for multimarkdown by
> default. If you want to enable that, you can turn on the `multimarkdown`
> option in the setup file. --[[Joey]]

>> Sorry, I should have indicated, I have multimarkdown enabled:

    # mdwn plugin
    # enable multimarkdown features?
    multimarkdown => 1,

>>Other features appear to be working, tables and footnotes for instance. See current install: <http://wiki.infosoph.org>

>>> Ok, in that case it's a bug in the perl module. Forwarded to
>>> <http://github.com/bobtfish/text-markdown/issues#issue/6> --[[Joey]]
>>> [[!tag done]]