Opened 18 years ago
Last modified 10 years ago
#3794 new defect
Invalid table(with indentation) layout in wiki.
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | normal | Milestone: | topic-wikiengine |
Component: | wiki system | Version: | devel |
Severity: | minor | Keywords: | table lists |
Cc: | tdkim@…, andrex@… | Branch: | |
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description (last modified by )
The following wiki markup:
* this is a table example. || This row has a '''wrong''' indentation. || || This row has a correct indentation. || || This row has a correct indentation. || * this is a correct block example. {{{ #!c int i = 0; printf("%d", i); }}}
Renders as:
- this is a table example.
This row has a wrong indentation. |
This row has a correct indentation. This row has a correct indentation.
- this is a correct block example.
int i = 0; printf("%d", i);
Attachments (0)
Change History (9)
comment:1 by , 18 years ago
Milestone: | → 0.10.1 |
---|---|
Owner: | changed from | to
Severity: | normal → minor |
comment:2 by , 18 years ago
This is a more infomation.
|| This is no indentation. || {{{ This is no indentation. }}} || This must have a 1 indentation. || {{{ This must have a 1 indentation. }}} || This must have 2 indentations. || {{{ This must have 2 indentations. || }}}
This is no indentation. |
This is no indentation.
This must have a 1 indentation.
This must have a 1 indentation.
This must have 2 indentations.
This must have 2 indentations. ||
Thanks for Trac…
comment:3 by , 18 years ago
Milestone: | 0.10.5 → 0.11 |
---|
I'll have a look if the new WikiEngine can handle this better…
comment:4 by , 18 years ago
Milestone: | 0.11 → 0.12 |
---|
WikiEngine refactoring and related fixes postponed.
comment:5 by , 15 years ago
Description: | modified (diff) |
---|---|
Keywords: | table lists added |
Milestone: | next-major-0.1X → 0.13 |
#6482 has been closed as duplicate of this ticket.
comment:6 by , 14 years ago
Cc: | added |
---|
comment:7 by , 14 years ago
I've been beating my head against this one and found that the following works:
* Some item ||indentation! ||my fancy||table|| ||woot||
Which displays as:
- Some item
indentation! my fancy table woot
The extra newline seems to fix the problem, and you need as many spaces as you want indents, both of which are counter-intuitive. Of course this means if you're including a table in an ordered list, you will have to reset the counter with the following item.
comment:8 by , 14 years ago
Milestone: | 0.13 → 0.14-wikiengine |
---|
comment:9 by , 10 years ago
Owner: | removed |
---|
Thanks for the report and the example, I'll try to make this work for the next bug fix release.