1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-02-22 14:00:03 +00:00

Update docs for tables in wikitext

Fixes #314
This commit is contained in:
Jermolene 2013-12-30 10:51:25 +00:00
parent 3494dd019d
commit c49bc2b0a6

View File

@ -1,5 +1,5 @@
created: 20130914132100000
modified: 20131205161224607
modified: 20131230104954234
tags: wikitext
title: Tables in WikiText
type: text/vnd.tiddlywiki
@ -38,18 +38,18 @@ The example renders as:
! Cell Merging
To merge a table cell with the one above, use the special cell text `~`. To merge a cell with the one to its left use the text `>`. For example:
To merge a table cell with the one above, use the special cell text `~`. To merge a cell with the one to its right use the text `>`. For example:
```
|Cell1 |Cell2 |Cell3 |Cell4 |
|Cell5 |Cell6 |Cell7 |>|
|Cell5 |Cell6 |>|Cell7 |
|Cell5 |~|Cell7 |Cell8 |
```
Renders as:
|Cell1 |Cell2 |Cell3 |Cell4 |
|Cell5 |Cell6 |Cell7 |>|
|Cell5 |Cell6 |>|Cell7 |
|Cell5 |~|Cell7 |Cell8 |
! Table Classes, Captions, Headers and Footers