Feature #12734
Add table reference to textile help
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | % Done: | 0% | ||
Category: | Documentation | |||
Target version: | 3.0.0 | |||
Resolution: | Fixed |
Description
Add some help for table definitions in textile help.
Related issues
Associated revisions
Adds table reference to textile help (#12734).
Patch by Matt Wiseley.
Adds table reference to textile help (#12734).
Patch by Matt Wiseley.
History
#1
Updated by Toshi MARUYAMA about 10 years ago
- Category set to Documentation
#2
Updated by Matt Wiseley about 8 years ago
- File issue-12734.patch
added
Attached is a patch that adds a Tables section to all of the wiki_syntax.html files.
#3
Updated by Jean-Philippe Lang about 8 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 |
#4
Updated by Jean-Philippe Lang about 8 years ago
Textile reference for tables: http://redcloth.org/hobix.com/textile/#tables
#5
Updated by Matt Wiseley about 8 years ago
- File 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.
#6
Updated by Jean-Philippe Lang about 8 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!
#7
Updated by Toshi MARUYAMA about 8 years ago
- Status changed from Closed to Reopened
Some character encodings are broken.
#8
Updated by Toshi MARUYAMA about 8 years ago
- Status changed from Reopened to Closed
#9
Updated by Go MAEDA over 7 years ago
- Related to Feature #1575: Toolbar button to insert a table added