diff options
author | https://infosoph.myopenid.com/ <https://infosoph.myopenid.com/@web> | 2009-08-26 10:25:48 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2009-08-26 10:25:48 -0400 |
commit | 155347837a6757bd85f9b15778133622daa006c0 (patch) | |
tree | d34b2730e61a4789a0126ed300f88575c2912e9c | |
parent | cc76cd64024ed09eff2a3e2da1282497e8c4e21b (diff) |
initial report
-rw-r--r-- | doc/bugs/defintion_lists_appear_to_be_disabled.mdwn | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/bugs/defintion_lists_appear_to_be_disabled.mdwn b/doc/bugs/defintion_lists_appear_to_be_disabled.mdwn new file mode 100644 index 000000000..c9756617d --- /dev/null +++ b/doc/bugs/defintion_lists_appear_to_be_disabled.mdwn @@ -0,0 +1,38 @@ +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> |