Modify ↓
Opened 17 years ago
Last modified 10 years ago
#7721 new enhancement
Allow cascaded definition lists
| Reported by: | Owned by: | ||
|---|---|---|---|
| Priority: | normal | Milestone: | topic-wikiengine |
| Component: | wiki system | Version: | |
| Severity: | minor | Keywords: | definition list |
| Cc: | Branch: | ||
| Release Notes: | |||
| API Changes: | |||
| Internal Changes: | |||
Description
The definition list TracWiki syntax " name::" doesn't work eh n cascaded:
name:: sub-name1:: some text sub-name2:: some text
produces:
<dl> <dt>name</dt> <dd></dd> <dt>sub-name1</dt> <dd>some text</dd> <dt>sub-name2</dt> <dd>some text</dd> <dl>
but should actually produce:
<dl> <dt>name</dt> <dd> <dl> <dt>sub-name1</dt> <dd>some text</dd> <dt>sub-name2</dt> <dd>some text</dd> </dl> </dd> <dl>
This should be valid XHTML because the <dd> tag may include other block tags.
The same doesn't work in other lists, e.g.:
* list
definition::
is handled like:
* list definition::
Attachments (0)
Change History (6)
comment:1 by , 17 years ago
| Milestone: | → 2.0 |
|---|---|
| Summary: | Definition Lists are not cascadeable → Allow cascaded definition lists |
| Type: | defect → enhancement |
comment:2 by , 16 years ago
| Milestone: | 2.0 → 0.13 |
|---|---|
| Owner: | set to |
comment:3 by , 15 years ago
| Milestone: | 0.13 → 0.14-wikiengine |
|---|
comment:5 by , 11 years ago
Is this the same as multiple data definitions not working as of 1.1.2b1?
No. That is not a defect. See source:tags/trac-1.0.1/trac/wiki/tests/wiki-tests.txt@:1710-1712,1714-1717#L1709
comment:6 by , 10 years ago
| Owner: | removed |
|---|
Note:
See TracTickets
for help on using tickets.



Is this the same as multiple data definitions not working as of 1.1.2b1?
produces
it should be outputting