TablesPlus plugin for WordPress
TablesPlus allows alternative, efficient ways to create tables and lists.
- TablesPlus supports VSV, CSV, Markdown, RST, Wiki.
- For VSV format, read Versatile Separated Values and VSV Examples.
- For other formats, see Lightweight Markup on formatting tables.
- See also the post on creating lists with TablesPlus plugin.
Examples:
VSV
[code]
[ tables=vsv]
((``Keyboard Layouts``tc))
((Name)) ((Score 1)) ((Score 2))
,BEAKL 8, 104, 132
,BEAKL 9, 120, 144
,BEAKL 10, 44, 99
[/tables]
[/code]
Name | Score 1 | Score 2 |
---|---|---|
BEAKL 8 | 104 | 132 |
BEAKL 9 | 120 | 144 |
BEAKL 10 | 44 | 99 |
[code]
[ tables=vsv]
((``Idols``R))
[[Name]] {{Age}} ((Gender))
,Hammie, 20.5, F
-Chow, Vivian-40-F
:Amuseum:25:M:
*Shena'Fu *18+5/12 *F
|Grndr-1245|21 months||
((``Guess who they are? :)``bl))
[/tables]
[/code]
Name | Age | Gender |
---|---|---|
Hammie | 20.5 | F |
Chow, Vivian | 40 | F |
Amuseum | 25 | M |
Shena'Fu | 18+5/12 | F |
Grndr-1245 | 21 months | |
CSV
[code]
Name, Score 1, Score 2
BEAKL 8, 104, 132
BEAKL 9, 120, 144
BEAKL 10, 44, 99
[/code]
Name | Score 1 | Score 2 |
---|---|---|
BEAKL 8 | 104 | 132 |
BEAKL 9 | 120 | 144 |
BEAKL 10 | 44 | 99 |
Markdown
[code]
[ tables=md]
Name Score 1 Score 2
-------- ------- -------
BEAKL 8 104 132
BEAKL 9 120 144
BEAKL 10 44 99
-------- ------- -------
[/tables]
[/code]
Name | Score 1 | Score 2 |
---|---|---|
BEAKL 8 | 104 | 132 |
BEAKL 9 | 120 | 144 |
BEAKL 10 | 44 | 99 |
[code]
[ tables=md]
+----------+---------+---------+
| Name | Score 1 | Score 2 |
+----------+---------+---------+
| BEAKL 8 | 104 | 132 |
| BEAKL 9 | 120 | 144 |
| BEAKL 10 | 44 | 99 |
+----------+---------+---------+
[/tables]
[/code]
Name | Score 1 | Score 2 |
---|---|---|
BEAKL 8 | 104 | 132 |
BEAKL 9 | 120 | 144 |
BEAKL 10 | 44 | 99 |
ReStructuredText (rST)
[code]
[ tables=rst]
======== ======= =======
Name Score 1 Score 2
======== ======= =======
BEAKL 8 104 132
BEAKL 9 120 144
BEAKL 10 44 99
======== ======= =======
[/tables]
[/code]
Name | Score 1 | Score 2 |
---|---|---|
BEAKL 8 | 104 | 132 |
BEAKL 9 | 120 | 144 |
BEAKL 10 | 44 | 99 |
[code]
[ tables=rst]
+----------+---------+---------+
| Name | Score 1 | Score 2 |
+==========+=========+=========+
| BEAKL 8 | 104 | 132 |
| BEAKL 9 | 120 | 144 |
| BEAKL 10 | 44 | 99 |
+----------+---------+---------+
[/tables]
[/code]
Name | Score 1 | Score 2 |
---|---|---|
BEAKL 8 | 104 | 132 |
BEAKL 9 | 120 | 144 |
BEAKL 10 | 44 | 99 |
Wiki
[code]
[ tables=wiki]
{|
!Name!!Score 1
!Score 2
|-
|BEAKL 8||120||144
|-
|BEAKL 9||120
|144
|-
|BEAKL 10
|44||99
|}
[/tables]
[/code]
Name | Score 1 | Score 2 |
---|---|---|
BEAKL 8 | 120 | 144 |
BEAKL 9 | 120 | 144 |
BEAKL 10 | 44 | 99 |
HTML Table
Name | Score 1 | Score 2 |
---|---|---|
BEAKL 8 | 104 | 132 |
BEAKL 9 | 120 | 144 |
BEAKL 10 | 44 | 99 |
One thought on “TablesPlus plugin”