Feature #12734
closedAdd table reference to textile help
0%
Description
Add some help for table definitions in textile help.
Files
Related issues
Updated by Matt Wiseley almost 10 years ago
- File issue-12734.patch issue-12734.patch added
Attached is a patch that adds a Tables section to all of the wiki_syntax.html files.
Updated by Jean-Philippe Lang almost 10 years ago
Thanks for the patch but it seems the example is wrong:
|_ A |_ B |_ C |_ D | | 1 | 2 |/2 span 2 |
renders as:
_ A | _ B | _ C | _ D |
1 | 2 | /2 span 2 |
Table headers need a dot after the underscore. The slash is used for rowspan, and the backslash for colspan and they need a dot too. The example should be something like:
|_. A |_. B |_. C |_. D | | 1 | 2 | 3 | 4 | |/2. rowspan | 2 |\2. colspan | | 2 | 3 | 4 |
which renders as:
A | B | C | D |
---|---|---|---|
1 | 2 | 3 | 4 |
rowspan | 2 | colspan | |
2 | 3 | 4 |
Updated by Jean-Philippe Lang almost 10 years ago
Textile reference for tables: http://redcloth.org/hobix.com/textile/#tables
Updated by Matt Wiseley almost 10 years ago
- File issue-12734.patch issue-12734.patch added
My apologies. The hand-coded table next to the example fooled me into thinking the example worked and I forgot to actually run it through Textile.
I've attached a new patch file that adds rowspan and has been tested in Redmine's Textile engine.
Updated by Jean-Philippe Lang almost 10 years ago
- Status changed from New to Closed
- Assignee set to Jean-Philippe Lang
- Target version set to 3.0.0
- Resolution set to Fixed
Patch committed, thanks!
Updated by Toshi MARUYAMA almost 10 years ago
- Status changed from Closed to Reopened
Some character encodings are broken.
Updated by Toshi MARUYAMA almost 10 years ago
- Status changed from Reopened to Closed
Updated by Go MAEDA over 9 years ago
- Related to Feature #1575: Toolbar button to insert a table added