Opened 20 years ago
Closed 19 years ago
#1117 closed enhancement (fixed)
Wrong indented numbered list formatting in wiki
Reported by: | Owned by: | Christian Boos | |
---|---|---|---|
Priority: | low | Milestone: | 0.10 |
Component: | wiki system | Version: | 0.8 |
Severity: | normal | Keywords: | |
Cc: | mrovner@… | Branch: | |
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description (last modified by )
Indented list not formatted properly:
1. item 1 1. item 2 1. item 2.1 1. item 2.2 1. item 3 a. item 3.a a. item 3.b 1. item 4 1. item 4.1
is rendered as:
- item 1
- item 2
- item 2.1
- item 2.2
- item 3
- item 3.a
- item 3.b
- item 4
- item 4.1
Attachments (0)
Change History (6)
comment:1 by , 20 years ago
Cc: | added |
---|
comment:2 by , 20 years ago
Priority: | normal → low |
---|---|
Severity: | normal → enhancement |
comment:3 by , 19 years ago
Well, HTML itself has supported ordered lists using "arabic numbers", "lower alpha", "upper alpha", "lower roman", and "upper roman":
http://www.w3.org/TR/html401/struct/lists.html
… although style sheets are now recommended for such purposes.
It would be nice to have a "native" way of making simple ordered lists of these other types. Use of WikiRestructuredText is more confusing for novices, and might scare my manager away.
comment:4 by , 19 years ago
Cc: | added; removed |
---|
comment:5 by , 19 years ago
Description: | modified (diff) |
---|---|
Milestone: | → 0.10 |
Owner: | changed from | to
Status: | new → assigned |
The patch I wrote for #2446 (attachment:ticket:2446:wiki_list_enhancements_r3014.diff) also implements this feature.
Because there's no support for using anything but decimal numbers to denote an ordered list. I.e. lower-alpha letters won't work, and the documentation doesn't suggest that they should work as far as I can tell.
Currently, you'll have to use WikiRestructuredText if you want advanced options like that.