Subject: | Negative level / type change in deeply nested lists fails |
Date: | Mon, 25 Feb 2008 14:05:47 -0500 |
To: | bug-Text-WikiFormat [...] rt.cpan.org |
From: | "Brian Schweitzer" <brian.brianschweitzer [...] gmail.com> |
Given the following list:
1. Alpha
1. Beta
* Alpha
* Beta
1. Gamma
1. Delta
1. Gamma
1. Delta
* Alpha
* Beta
1. Gamma
1. Delta
* Zed1
* Zed1
1. Zed2
1. Zed2
* Zed3
* Zed3
1. Zed4
1. Zed4
Everything listed as Zed fails:
Zed2 ought to be at depth 6, but becomes depth 1.
Zed3 ought to be at depth level 2, but becomes depth level 1.
Zed4 ought to be at depth level 1, but once Zed3 becomes depth level
1, Zed4 becomes depth 2, under Zed3.
The following also fails, if the list type is changed:
1. Alpha
1. Beta
* Alpha
* Beta
1. Gamma
1. Delta
1. Gamma
1. Delta
* Alpha
* Beta
1. Zed0
1. Zed0
* Zed1
* Zed1
1. Zed2
1. Zed2
Note that here, Zed0, Zed1, and Zed2 are all at depth 6. Zed0
correctly generates as depth 6, but Zed1 generates as depth 1, then
Zed2 generates just like Zed3+4 in the prior example, becoming depth
2. All three ought to be at depth 6.
Brian