PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Text » Text_Wiki » Bug #6072

Parse/List.php pb width count number

Details

Submitted2005-11-25 17:14 UTC
Fromkalachnkv at free dot fr
Assignedjustinpatrin
StatusNo Feedback
PackageText_Wiki
PHP Version4.3.10
OSLinux
Roadmaps(Not assigned)

Comments

[2005-11-25 17:14 UTC] kalachnkv at free dot fr

Description:
------------
When a Wicked page is formatted as below.

Test script:
---------------
# one
head
# two
body
# three
foot

Expected result:
----------------
1. one

head

2. two

body

3. three

foot

Actual result:
--------------
1. one

head

1. two

body

1. three

foot

[2005-11-25 17:21 UTC] kalachnkv at free dot fr

wicked format:

* first_bullet
# one
head
# two
body
# three
foot

* second_bullet

----
Actual result:

* first_bullet
1. one

head
# two
body
# three
foot

* second_bullet

----
Expected result:

* first_bullet
1. one

head
2. two
body
3. three
foot

* second_bullet

----