ChiliProject is not maintained anymore. Please be advised that there will be no more updates.
We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.
Can no longer render unordered lists within ordered lists (Bug #1075)
Description
This worked fine in 1.x:
# foo ** bar
It should display:
1. foo • bar
...but instead I see:
1. foo 1. bar
Here's a test whose results should be visible. (This isn't in PRE tags.):
- foo
- bar
Associated revisions
Make list style for ul and ol elements more specific. #1075
History
Updated by Holger Just at 2012-07-10 11:52 pm
Okay, this is purely a CSS problem. The HTML is atill rendered correctly as
<ol> <li> foo <ul> <li>bar</li> </ul> </li> </ol>
- Assignee set to Holger Just
- Target version set to 3.3.0
Updated by Holger Just at 2012-07-11 02:29 pm
Pull request at https://github.com/chiliproject/chiliproject/pull/223
- Status changed from Open to Ready for review
- Assignee changed from Holger Just to Felix Schäfer
Updated by Felix Schäfer at 2012-07-13 11:30 pm
Merged in f89c003, thanks for reporting!
- Status changed from Ready for review to Closed