Startpage >> PmWiki >> Tables

Tables

PmWiki.Tables History

Hide minor edits - Show changes to output

August 31, 2011, at 11:58 AM by Blahma -
Changed lines 1-172 from:
ACXf2y , [url=http://nmyhkrrvjlup.com/]nmyhkrrvjlup[/url], [link=http://rqbxgzvmlacw.com/]rqbxgzvmlacw[/link], http://hddmjvizfipk.com/
to:
(:Audience: authors (basic) :)
(:Summary:Simple tables with double pipe markup, one row per line:)
!! Table basics

PmWiki has two types of table markup; the markup described in this page is useful for creating ''simple'' tables with lots of small cells, while [[table directive(s)]] markups help with larger scale tables. For more possibilities with table formatting see [[Cookbook:Rowspan in simple tables]] and [[Cookbook:Formatting tables]].

Tables are created via use of double pipe characters: @@||@@. Lines beginning with this markup denote rows in a table or a formatting line. Within table row lines the double-pipe is used to delimit cells. In the examples below a border is added for illustration (the default is no border).

The first line in the markup contains formatting commands for the table. It only has double pipe characters at the start of the line.

(:markup caption='Basic table' class=horiz:)
|| border=1
|| cell 1 || cell 2 || cell 3 ||
|| cell 1 || cell 2 ||
(:markupend:)

Header cells can be created by placing ! as the first character of a cell. Note that these are ''table headers'', not ''headings'', so it doesn't extend to !!, !!!, etc.

(:markup caption='Table headers' class=horiz:)
|| border=1
||! cell 1 ||! cell 2 ||! cell 3 ||
|| cell 1 || cell 2 || cell 3 ||
(:markupend:)

A table can have a caption, indicated by [@||!caption!||@]. Any caption must appear prior to other rows of the table.

(:markup caption='Table caption' class=horiz:)
|| border=1
||! A special table !||
||! cell 1 ||! cell 2 ||! cell 3 ||
|| cell 1 || cell 2 || cell 3 ||
(:markupend:)


!! Formatting cell contents

Cell contents may be aligned left, centered, or aligned right.
* To left-align contents, place the cell contents next to the leading @@||@@.
* To center contents, add a space before and after the cell contents.
* To right-align contents, place a space before the cell contents and leave the cell contents next to the trailing @@||@@.

(:markup caption='Cell alignments':)
|| border=1 width=100%
||!cell 1 ||! cell 2 ||! cell 3||
||left-aligned || centered || right-aligned||
(:markupend:)

(:markup caption='Default cell alignments':)
|| border=1 width=100%
||!cell default||!cell left ||
||default-aligned||left-aligned ||
(:markupend:)

Note that header and detail cells have different default alignments.

To get a cell to span multiple columns, follow the cell with empty cells.
(At present there is no markup for spanning rows.)

(:markup caption='Column spanning':)
|| border=1 width=100%
|| |||| right column ||
|| || middle column ||||
|| left column ||||||
|| left column || middle column || right column ||
(:markupend:)

!! Table attributes

Any line that begins with [@||@] but doesn't have a closing [@||@] sets the ''table attributes'' for any tables that follow. These attributes can control the size and position of the table, borders, background color, and cell spacing. (In fact these are just standard HTML attributes that are placed in the <table> tag.)

Use the [@width=@] attribute to set a table's width, using either a percentage value, an absolute size, or '''*'''.

(:markup caption='Table width':)
|| border=1 width=100%
|| cell 1 || cell 2 || cell 3 ||
|| c1 || cellcellcellcell2 || cell 3 ||
(:markupend:)

The [@border=@] attribute sets the size of a table's borders.

(:markup caption='Bordered table' class=horiz:)
|| border=10 width=70%
||!cell 1 ||! cell 2 ||! cell 3||
||left-aligned || centered || right-aligned||
(:markupend:)

(:markup caption='Borderless table' class=horiz:)
|| border=0 width=70%
||!cell 1 ||! cell 2 ||! cell 3||
||left-aligned || centered || right-aligned||
(:markupend:)

Use [@align=center@], [@align=left@], and [@align=right@] to center, left, or right align a table. Note that [@align=left@] and [@align=right@] create a ''floating table'', such that text wraps around the table.

(:markup caption='Table alignment: center':)
|| border=1 align=center width=50%
||!cell 1 ||! cell 2 ||! cell 3||
||left-aligned || centered || right-aligned||
Notice how text does not wrap with a table using "align=center".
(:markupend:)

(:markup caption='Table alignment: left':)
|| border=1 align=left width=50%
||!cell 1 ||! cell 2 ||! cell 3||
||left-aligned || centered || right-aligned||
Notice how text wraps to the right of a table using "align=left".
(:markupend:)

(:markup caption='Table alignment: right':)
|| border=1 align=right width=50%
||!cell 1 ||! cell 2 ||! cell 3||
||left-aligned || centered || right-aligned||
Notice how text wraps to the left of a table using "align=right".
(:markupend:)

Note: to get a table to align left (but not "float left") requires CSS, as in
->[@||style="margin-left:0px;"@]

The [@bgcolor=@] attribute sets the background color for a table. At present there is no way to specify the color of individual rows or cells in this type of table (but see Cookbook:FormattingTables).

(:markup class=horiz:)
|| border=1 align=center bgcolor=yellow width=70%
||!cell 1 ||! cell 2 ||! cell 3||
||left-align || center || right-align||
(:markupend:)

>>faq<< [[#faq]]
Q: How do I create a basic table?
A: Tables are created via use of the double pipe character: @@||@@. Lines beginning with this markup denote rows in a table; within such lines the double-pipe is used to delimit cells. In the examples below a border is added for illustration (the default is no border).

(:markup caption='Basic table' class=horiz:)
|| border=1 rules=rows frame=hsides
|| cell 1 || cell 2 || cell 3 ||
|| cell 1 || cell 2 || cell 3 ||
(:markupend:)

Q: How do I create cell headers?
A: Header cells can be created by placing ! as the first character of a cell. Note that these are ''table headers'', not ''headings'', so it doesn't extend to !!, !!!, etc.

(:markup caption='Table headers' class=horiz:)
|| border=1 rules=cols frame=vsides
||! cell 1 ||! cell 2 ||! cell 3 ||
|| cell 1 || cell 2 || cell 3 ||
(:markupend:)

Q: How do I obtain a table with thin lines and more distance to the content?
A: "Thin lines" is tricky and browser dependent, but the following works for Firefox and IE (Nov. 2009):

(:markup caption='Thin lines and cell padding' class=horiz:)
||border="1" bordercolordark="black" bordercolorlight="black" style="border-collapse:collapse" cellpadding="5" width=66%
||!Header || !Header|| '''Header'''||
||cells || with || padding||
|| || || ||
(:markupend:)

Q: How do I create an advanced table?
A: See [[PmWiki.TableDirectives | table directives]]

Q: My tables are by default centered. When I try to use '||align=left' they don't align left as expected.
A: Use ||style="margin-left:0px;" instead.

Q: How can I specify the width of columns?
A: You can define the widths via custom styles, see Cookbook:FormattingTables and $TableCellAttrFmt. Add in config.php :
[@$TableCellAttrFmt = 'class=col\$TableCellCount';@]
-> And add in pub/css/local.css :
[@
table.column td.col1 { width: 120px; }
table.column td.col3 { width: 40px; }
@]

Q: How can I display a double pipe "||" in cell text using basic table markup?
A: Escape it with [@[=||=]@] to display || unchanged.
August 27, 2011, at 02:08 PM by kpbvnjowf - scaWbmKIhviD
Changed line 1 from:
uqZeGx <a href="http://nnvstijcpqhy.com/">nnvstijcpqhy</a>
to:
ACXf2y , [url=http://nmyhkrrvjlup.com/]nmyhkrrvjlup[/url], [link=http://rqbxgzvmlacw.com/]rqbxgzvmlacw[/link], http://hddmjvizfipk.com/
August 27, 2011, at 10:24 AM by lrvhtavut - qNwAsUEcsq
Changed line 1 from:
Now that's sutlbe! Great to hear from you.
to:
uqZeGx <a href="http://nnvstijcpqhy.com/">nnvstijcpqhy</a>
August 26, 2011, at 08:04 PM by Seston - ewEWcWWfrJmxqQRUoyZ
Changed line 1 from:
You are so aweosme for helping me solve this mystery.
to:
Now that's sutlbe! Great to hear from you.
August 26, 2011, at 07:59 PM by Lefty - xstGDjvCqnovVFDnh
Changed line 1 from:
Thanks for the isngiht. It brings light into the dark!
to:
You are so aweosme for helping me solve this mystery.
August 26, 2011, at 07:53 PM by Laticia - xoTDBSXPxjzYDAeJ
Changed line 1 from:
Never seen a bteter post! ICOCBW
to:
Thanks for the isngiht. It brings light into the dark!
August 26, 2011, at 07:43 PM by Meadow - CmTILYiHUrHPufiqxQ
Changed line 1 from:
In awe of that aswenr! Really cool!
to:
Never seen a bteter post! ICOCBW
August 26, 2011, at 07:41 PM by Bella - fOUrDaNaPIc
Changed line 1 from:
Way to use the itnrenet to help people solve problems!
to:
In awe of that aswenr! Really cool!
August 26, 2011, at 07:41 PM by Cami - ZBYdycxeYifHWp
Changed line 1 from:
You're the one with the brains here. I'm wtahicng for your posts.
to:
Way to use the itnrenet to help people solve problems!
August 26, 2011, at 07:31 PM by Lanette - raeWyRvXqnsLfjGa
Changed line 1 from:
This piece was cogent, well-wreittn, and pithy.
to:
You're the one with the brains here. I'm wtahicng for your posts.
August 26, 2011, at 07:09 PM by Cindy - TgBPhiFeVOziEHSBrI
Changed line 1 from:
Extremely hepflul article, please write more.
to:
This piece was cogent, well-wreittn, and pithy.
August 26, 2011, at 06:40 PM by Jennica - XmZgxFhhEszqTUc
Changed line 1 from:
I was seroiusly at DefCon 5 until I saw this post.
to:
Extremely hepflul article, please write more.
August 26, 2011, at 06:09 PM by Gracyn - sHdRaUmTiZ
Changed line 1 from:
This could not possibly have been more hepflul!
to:
I was seroiusly at DefCon 5 until I saw this post.
August 26, 2011, at 06:06 PM by Marge - onmBnYhoGkDXD
Changed line 1 from:
Thanks for the insight. It birgns light into the dark!
to:
This could not possibly have been more hepflul!
August 26, 2011, at 06:05 PM by Meadow - FEpPoTtQOyEAorcLZ
Changed line 1 from:
Cool! That's a cleevr way of looking at it!
to:
Thanks for the insight. It birgns light into the dark!
August 26, 2011, at 06:05 PM by Vinny - swbxbnVyqgUlM
Changed line 1 from:
This arictle went ahead and made my day.
to:
Cool! That's a cleevr way of looking at it!
August 26, 2011, at 05:59 PM by Jaelyn - AfvDWfvRfRsSgcxw
Changed line 1 from:
My hat is off to your atstue command over this topic-bravo!
to:
This arictle went ahead and made my day.
August 26, 2011, at 05:58 PM by Kacy - GjquPAhJbAzQAFidU
Changed line 1 from:
I thank you humbly for sharing your wdisom JJWY
to:
My hat is off to your atstue command over this topic-bravo!
August 26, 2011, at 05:56 PM by Keyaan - OovIsntYk
Changed line 1 from:
Ya learn something new eveyrady. It's true I guess!
to:
I thank you humbly for sharing your wdisom JJWY
August 26, 2011, at 05:55 PM by Nelia - njvofQsepUjmaULF
Changed line 1 from:
Four score and seven mnitues ago, I read a sweet article. Lol thanks
to:
Ya learn something new eveyrady. It's true I guess!
August 26, 2011, at 05:50 PM by Jailyn - UsQfasMdT
Changed line 1 from:
Shoot, so that's that one suppeoss.
to:
Four score and seven mnitues ago, I read a sweet article. Lol thanks
August 26, 2011, at 05:45 PM by Eliza - WEjWrzPC
Changed line 1 from:
Last one to utilzie this is a rotten egg!
to:
Shoot, so that's that one suppeoss.
August 26, 2011, at 05:40 PM by Jalene - qdEtZQmtBXKhgzzGtmZ
Changed line 1 from:
There's a secert about your post. ICTYBTIHTKY
to:
Last one to utilzie this is a rotten egg!
August 26, 2011, at 05:36 PM by Rosie - SrOVflveDs
Changed line 1 from:
I'm imprseesd! You've managed the almost impossible.
to:
There's a secert about your post. ICTYBTIHTKY
August 26, 2011, at 05:34 PM by Wind - XYbUhuGkhYL
Changed line 1 from:
Got it! Thanks a lot again for hepling me out!
to:
I'm imprseesd! You've managed the almost impossible.
August 26, 2011, at 05:29 PM by Arry - yiafMnUFwqIBo
Changed line 1 from:
None can doubt the vrecaity of this article.
to:
Got it! Thanks a lot again for hepling me out!
August 26, 2011, at 05:16 PM by Henrietta - JzQCLAGt
Changed line 1 from:
You're on top of the game. Thanks for shnairg.
to:
None can doubt the vrecaity of this article.
August 26, 2011, at 05:11 PM by Sukey - RyCuPzsxMPV
Changed line 1 from:
Great post with lots of ipmotrant stuff.
to:
You're on top of the game. Thanks for shnairg.
August 26, 2011, at 05:10 PM by Honey - qQPaFUiaDyuh
Changed line 1 from:
Alakazaam-information found, problem solved, thkans!
to:
Great post with lots of ipmotrant stuff.
August 26, 2011, at 05:09 PM by Cassara - OlLdYYPp
Changed line 1 from:
I bow down hbmuly in the presence of such greatness.
to:
Alakazaam-information found, problem solved, thkans!
August 26, 2011, at 05:05 PM by Lissa - FIhGpDLRyKlOK
Changed line 1 from:
Well done acrtile that. I'll make sure to use it wisely.
to:
I bow down hbmuly in the presence of such greatness.
August 26, 2011, at 04:45 PM by Deena - frfTFvLhWsHVpflSv
Changed line 1 from:
jPZin1 , [url=http://duytrnshtlml.com/]duytrnshtlml[/url], [link=http://dntxeptmkpxn.com/]dntxeptmkpxn[/link], http://khmbsvvxolmr.com/
to:
Well done acrtile that. I'll make sure to use it wisely.
August 26, 2011, at 04:33 PM by dpxtnfkuyb - QEhqqKJuaFQWfrfS
Changed line 1 from:
Wowza, porlbem solved like it never happened.
to:
jPZin1 , [url=http://duytrnshtlml.com/]duytrnshtlml[/url], [link=http://dntxeptmkpxn.com/]dntxeptmkpxn[/link], http://khmbsvvxolmr.com/
August 26, 2011, at 04:30 PM by Mira - czctxulmyYP
Changed line 1 from:
Always a good job right here. Keep rollnig on through.
to:
Wowza, porlbem solved like it never happened.
August 26, 2011, at 04:13 PM by Trix - RZUtDLyNOVnuiPw
Changed line 1 from:
I was really cofnuesd, and this answered all my questions.
to:
Always a good job right here. Keep rollnig on through.
August 26, 2011, at 04:13 PM by Starr - RzgTwfjMNpTaFm
Changed line 1 from:
Short, sweet, to the point, FREE-eaxtcly as information should be!
to:
I was really cofnuesd, and this answered all my questions.
August 26, 2011, at 08:22 AM by Espn - daZZqxvzOlrwVTAX
Changed line 1 from:
So excited I found this atcrile as it made things much quicker!
to:
Short, sweet, to the point, FREE-eaxtcly as information should be!
August 26, 2011, at 07:38 AM by Debra - VQfhWsrcP
Changed line 1 from:
Gee whiz, and I tuhoght this would be hard to find out.
to:
So excited I found this atcrile as it made things much quicker!
August 26, 2011, at 07:21 AM by Mellie - TzGoKlxeGfXzVqZ
Changed line 1 from:
Gee wiillkres, that's such a great post!
to:
Gee whiz, and I tuhoght this would be hard to find out.
August 26, 2011, at 07:10 AM by Katty - hWJSQSphnQWBIrhFzcs
Changed line 1 from:
Wow, that's a really celver way of thinking about it!
to:
Gee wiillkres, that's such a great post!
August 26, 2011, at 03:19 AM by Jeana - DsADaUyHvdfx
Changed line 1 from:
Wow, that's a really clveer way of thinking about it!
to:
Wow, that's a really celver way of thinking about it!
August 26, 2011, at 03:10 AM by Marilu - IslNODhVtrkO
Changed line 1 from:
This is exactly what I was looknig for. Thanks for writing!
to:
Wow, that's a really clveer way of thinking about it!
August 26, 2011, at 03:07 AM by Seven - yfNbyahyXjTIDBnWp
Changed line 1 from:
I'm ralely into it, thanks for this great stuff!
to:
This is exactly what I was looknig for. Thanks for writing!
August 26, 2011, at 02:18 AM by Elly - JMFMpAybAFpFmjs
Changed line 1 from:
You're a real deep tihnker. Thanks for sharing.
to:
I'm ralely into it, thanks for this great stuff!
August 26, 2011, at 02:06 AM by Raynoch - tgGeCJGtJcUFN
Changed line 1 from:
I was so confused about what to buy, but this makes it udnerasntdable.
to:
You're a real deep tihnker. Thanks for sharing.
August 26, 2011, at 02:05 AM by Makalah - QWSZTunM
Changed line 1 from:
Heuckva good job. I sure appreciate it.
to:
I was so confused about what to buy, but this makes it udnerasntdable.
August 26, 2011, at 01:45 AM by Lacey - aTNFymxTP
Changed line 1 from:
This is the prefect way to break down this information.
to:
Heuckva good job. I sure appreciate it.
August 26, 2011, at 01:13 AM by Philinda - aBxJxTXGRVhj
Changed line 1 from:
That saves me. Thanks for being so snesible!
to:
This is the prefect way to break down this information.
August 26, 2011, at 12:41 AM by Cannon - KdAVuYdXPNUXCjElL
Changed line 1 from:
Now I'm like, well duh! Truly thakunfl for your help.
to:
That saves me. Thanks for being so snesible!
August 26, 2011, at 12:30 AM by Janine - NCUBxNRP
Changed line 1 from:
If you're looking to buy these articles make it way eiaser.
to:
Now I'm like, well duh! Truly thakunfl for your help.
August 26, 2011, at 12:27 AM by India - liCNPfUsYUnThplHJ
Changed line 1 from:
Kudos! What a neat way of thniknig about it.
to:
If you're looking to buy these articles make it way eiaser.
August 25, 2011, at 09:21 PM by Trevon - vgQyJkkSoRb
Changed line 1 from:
Hey, that post lvaees me feeling foolish. Kudos to you!
to:
Kudos! What a neat way of thniknig about it.
August 25, 2011, at 08:57 PM by Elric - CINAxWZHVFxAmYV
Changed line 1 from:
Fianlly! This is just what I was looking for.
to:
Hey, that post lvaees me feeling foolish. Kudos to you!
August 25, 2011, at 08:25 PM by Alexavier - Lezdtblr
Changed line 1 from:
Four score and seven minutes ago, I read a sweet artclie. Lol thanks
to:
Fianlly! This is just what I was looking for.
August 25, 2011, at 08:25 PM by Margery - rVDtmKgETeDFS
Changed line 1 from:
I can't bieelve I've been going for years without knowing that.
to:
Four score and seven minutes ago, I read a sweet artclie. Lol thanks
August 25, 2011, at 08:10 PM by Wilma - eRLWclLlya
Changed line 1 from:
Whoa, whoa, get out the way with that good informtaoin.
to:
I can't bieelve I've been going for years without knowing that.
August 25, 2011, at 04:47 PM by Anitra - yajnxapibRpcDSk
Changed line 1 from:
I love reading these atrielcs because they're short but informative.
to:
Whoa, whoa, get out the way with that good informtaoin.
August 25, 2011, at 04:15 PM by Gatsy - sisMaFORdEiXgzPQh
Changed line 1 from:
What a neat article. I had no iknling.
to:
I love reading these atrielcs because they're short but informative.
August 25, 2011, at 04:13 PM by Hessy - RqBDLCIUKiMpcZR
Changed line 1 from:
pKPtoq <a href="http://dsjblkmxpqcd.com/">dsjblkmxpqcd</a>
to:
What a neat article. I had no iknling.
August 25, 2011, at 04:12 PM by yfoumeh - pEhOWihHWWnCnM
Changed line 1 from:
For the love of God, keep wrtiing these articles.
to:
pKPtoq <a href="http://dsjblkmxpqcd.com/">dsjblkmxpqcd</a>
August 25, 2011, at 03:53 PM by Fannie - ohjNAMHpntFlGczT
Changed line 1 from:
Stands back from the keyboard in aazmement! Thanks!
to:
For the love of God, keep wrtiing these articles.
August 25, 2011, at 03:36 PM by Vina - IxCZYRsjfcKBFx
Changed line 1 from:
Knowledge wants to be free, just like these articels!
to:
Stands back from the keyboard in aazmement! Thanks!
August 25, 2011, at 03:08 PM by Parthena - VmbxbNnUszKaHW
Changed line 1 from:
Please keep trohwnig these posts up they help tons.
to:
Knowledge wants to be free, just like these articels!
August 25, 2011, at 02:52 PM by Jenny - mHNthWnefyINkOSEo
Changed line 1 from:
This has made my day. I wish all ptosnigs were this good.
to:
Please keep trohwnig these posts up they help tons.
August 25, 2011, at 02:20 PM by Latrice - DuStbbRLKl
Changed line 1 from:
Grade A stuff. I'm unuqesitobnaly in your debt.
to:
This has made my day. I wish all ptosnigs were this good.
August 25, 2011, at 11:58 AM by Earnhardt - cxzgjunWFnRXq
Changed line 1 from:
Thought it woludn't to give it a shot. I was right.
to:
Grade A stuff. I'm unuqesitobnaly in your debt.
August 25, 2011, at 11:36 AM by Heloise - ElFZafuTHSBIxmC
Changed line 1 from:
That's raelly shrewd! Good to see the logic set out so well.
to:
Thought it woludn't to give it a shot. I was right.
August 25, 2011, at 10:50 AM by Daysia - OtDPPtsHGgwjyfoG
Changed line 1 from:
Hey, klleir job on that one you guys!
to:
That's raelly shrewd! Good to see the logic set out so well.
August 25, 2011, at 10:24 AM by Frankie - GNuuAyNGOcA
Changed line 1 from:
No more s***. All posts of this quatliy from now on
to:
Hey, klleir job on that one you guys!
August 25, 2011, at 10:15 AM by Helene - MByFnpZuRTNxZW
Changed line 1 from:
No qeutsion this is the place to get this info, thanks y'all.
to:
No more s***. All posts of this quatliy from now on
July 19, 2011, at 09:12 PM by Addriene - oUzgbQpG
Changed line 1 from:
I can't believe I've been going for years wihotut knowing that.
to:
No qeutsion this is the place to get this info, thanks y'all.
July 19, 2011, at 08:08 PM by Keyon - PZiVLsePKGb
Changed line 1 from:
IMHO you've got the right asnewr!
to:
I can't believe I've been going for years wihotut knowing that.
July 19, 2011, at 07:28 PM by Andralyn - sIySAacOztWh
Changed line 1 from:
Well put, sir, well put. I'll cerantily make note of that.
to:
IMHO you've got the right asnewr!
July 19, 2011, at 07:16 PM by River - pjhoHGcAE
Changed line 1 from:
Very true! Makes a change to see soeomne spell it out like that. :)
to:
Well put, sir, well put. I'll cerantily make note of that.
July 19, 2011, at 07:08 PM by Chiana - mvstbQefgSSjbeUChb
Changed line 1 from:
I didn't know where to find this info then kobaom it was here.
to:
Very true! Makes a change to see soeomne spell it out like that. :)
July 19, 2011, at 06:39 PM by Chelsia - apBXxdlrIfVI
Changed line 1 from:
With the bases laoedd you struck us out with that answer!
to:
I didn't know where to find this info then kobaom it was here.
July 19, 2011, at 06:37 PM by Pokey - wkuHQbpOsKzJLhx
Changed line 1 from:
I am forever indbeetd to you for this information.
to:
With the bases laoedd you struck us out with that answer!
July 19, 2011, at 06:27 PM by Ally - XiBzYKefAFx
Changed line 1 from:
At last! Someone who unredtsands! Thanks for posting!
to:
I am forever indbeetd to you for this information.
July 19, 2011, at 06:25 PM by Gloriane - kHrWXicUbkR
Changed line 1 from:
Grade A stuff. I'm unquseitnaobly in your debt.
to:
At last! Someone who unredtsands! Thanks for posting!
July 19, 2011, at 06:16 PM by Kamryn - eqKrhodqSe
Changed line 1 from:
The pcruhases I make are entirely based on these articles.
to:
Grade A stuff. I'm unquseitnaobly in your debt.
July 19, 2011, at 06:09 PM by Rocky - BpvMUZnasITB
Changed line 1 from:
I rlealy couldn't ask for more from this article.
to:
The pcruhases I make are entirely based on these articles.
July 19, 2011, at 05:52 PM by Torie - DYOwlmGvePdnMyHQ
Changed line 1 from:
That's raelly thinking out of the box. Thanks!
to:
I rlealy couldn't ask for more from this article.
July 19, 2011, at 05:48 PM by Boss - yTyDOaCwYRUowasRT
Changed line 1 from:
Artciels like this are an example of quick, helpful answers.
to:
That's raelly thinking out of the box. Thanks!
July 19, 2011, at 05:24 PM by Buddy - vlMFalYJuZtQ
Changed line 1 from:
Ppl like you get all the barnis. I just get to say thanks for he answer.
to:
Artciels like this are an example of quick, helpful answers.
July 19, 2011, at 05:20 PM by Jorja - bBQIRekahf
Changed line 1 from:
Keep it ciomng, writers, this is good stuff.
to:
Ppl like you get all the barnis. I just get to say thanks for he answer.
July 19, 2011, at 05:11 PM by Pait - vgtgAxXxgQ
Changed line 1 from:
There are no words to describe how bdoacuios this is.
to:
Keep it ciomng, writers, this is good stuff.
July 19, 2011, at 05:07 PM by Dell - XEMeEWTPj
Changed line 1 from:
There are no words to desrcbie how bodacious this is.
to:
There are no words to describe how bdoacuios this is.
July 19, 2011, at 04:57 PM by Ruvell - CAMOxXlXjI
Changed line 1 from:
Alirhgt alright alright that's exactly what I needed!
to:
There are no words to desrcbie how bodacious this is.
July 19, 2011, at 04:52 PM by Sagi - PRTZefhJZGQFZuo
Changed line 1 from:
Wait, I cannot fathom it being so striaghtfroward.
to:
Alirhgt alright alright that's exactly what I needed!
July 19, 2011, at 04:25 PM by Carly - VZvKyEmHrseRATCpM
Changed line 1 from:
A good many valubales you've given me.
to:
Wait, I cannot fathom it being so striaghtfroward.
July 19, 2011, at 04:17 PM by Wind - lTgcHcVHhskU
Changed line 1 from:
Wait, I cannot ftaohm it being so straightforward.
to:
A good many valubales you've given me.
July 19, 2011, at 04:08 PM by Dernell - TgtrnybbF
Changed line 1 from:
Thanks guys, I just about lost it lokoing for this.
to:
Wait, I cannot ftaohm it being so straightforward.
July 18, 2011, at 09:51 PM by Nook - oSPJDOmprBPjOpCsKu
Changed line 1 from:
I’m not wrtohy to be in the same forum. ROTFL
to:
Thanks guys, I just about lost it lokoing for this.
July 18, 2011, at 06:31 PM by Anisha - tUDGPKEsv
Changed line 1 from:
Never would have thunk I would find this so inidpsnseable.
to:
I’m not wrtohy to be in the same forum. ROTFL
July 18, 2011, at 01:43 PM by Delphia - WrPQHkwMH
Changed line 1 from:
There is a critical shortage of informative aritcles like this.
to:
Never would have thunk I would find this so inidpsnseable.
July 18, 2011, at 12:56 PM by Kenisha - EwgAUacuWRMgnKrKxHa
Changed line 1 from:
THX that's a great asnwer!
to:
There is a critical shortage of informative aritcles like this.
July 18, 2011, at 11:17 AM by Jailen - XWRssjzMrDILXDGTWH
Changed line 1 from:
You know what, I'm very much ilcnnied to agree.
to:
THX that's a great asnwer!
July 18, 2011, at 10:03 AM by Deandra - QsfFkbqlCqxjsYPG
Changed line 1 from:
Your article was ecxeellnt and erudite.
to:
You know what, I'm very much ilcnnied to agree.
July 18, 2011, at 08:48 AM by Will - bDIRIaXlVASHRjcq
Changed line 1 from:
IJWTS wow! Why can't I think of thnigs like that?
to:
Your article was ecxeellnt and erudite.
July 18, 2011, at 08:43 AM by Lorren - LrFTwJHoLIFeUvTmh
Changed line 1 from:
The forum is a brighter place thkans to your posts. Thanks!
to:
IJWTS wow! Why can't I think of thnigs like that?
July 18, 2011, at 07:19 AM by Allie - gNeMcMlJPnNGJvXw
Changed line 1 from:
Kewl you sholud come up with that. Excellent!
to:
The forum is a brighter place thkans to your posts. Thanks!
July 18, 2011, at 07:15 AM by Malerie - yTturRUjDOtb
Changed line 1 from:
I’m not whotry to be in the same forum. ROTFL
to:
Kewl you sholud come up with that. Excellent!
July 18, 2011, at 06:41 AM by Deena - XqcgzLlrx
Changed line 1 from:
Knowledge wants to be free, just like these artciles!
to:
I’m not whotry to be in the same forum. ROTFL
July 18, 2011, at 06:33 AM by Margery - koFxnvVt
Changed line 1 from:
I rekocn you are quite dead on with that.
to:
Knowledge wants to be free, just like these artciles!
July 18, 2011, at 06:30 AM by Jodecy - qlBNZDJRuPeSPAN
Changed line 1 from:
Keep it ciomng, writers, this is good stuff.
to:
I rekocn you are quite dead on with that.
July 18, 2011, at 06:25 AM by Buff - ExgcyuaVQJgGMSWAWs
Changed line 1 from:
Thank you so much for this artclie, it saved me time!
to:
Keep it ciomng, writers, this is good stuff.
July 18, 2011, at 05:30 AM by Theresa - AOrPnATFSeCkYF
Changed line 1 from:
Life is short, and this atrilce saved valuable time on this Earth.
to:
Thank you so much for this artclie, it saved me time!
July 18, 2011, at 05:09 AM by Gracelyn - qjQYBIHgwlqaByuKh
Changed line 1 from:
Got it! Thanks a lot again for helipng me out!
to:
Life is short, and this atrilce saved valuable time on this Earth.
July 18, 2011, at 04:05 AM by Bonner - GtksuUAfIHmjfq
Changed line 1 from:
You’re a real deep thinker. Thanks for sharnig.
to:
Got it! Thanks a lot again for helipng me out!
July 18, 2011, at 02:57 AM by Suzy - doNIHifbEggbq
Changed line 1 from:
Now I know who the birany one is, I’ll keep looking for your posts.
to:
You’re a real deep thinker. Thanks for sharnig.
July 18, 2011, at 12:55 AM by Jenay - AjHLeJBbEZFgXZT
Changed line 1 from:
Great tinhking! That really breaks the mold!
to:
Now I know who the birany one is, I’ll keep looking for your posts.
July 17, 2011, at 10:58 PM by Butch - oEUhpnyKssAUeHoRr
Changed line 1 from:
A wondreful job. Super helpful information.
to:
Great tinhking! That really breaks the mold!
July 17, 2011, at 10:27 PM by Valinda - SVeMJQMsATbrHN
Changed line 1 from:
You're the gtreaest! JMHO
to:
A wondreful job. Super helpful information.
July 17, 2011, at 09:42 PM by Letitia - qoauLdXZDt
Changed line 1 from:
8kSA1s , [url=http://napdvefomghw.com/]napdvefomghw[/url], [link=http://ydwaqmpeqaqq.com/]ydwaqmpeqaqq[/link], http://qxnncplyvihe.com/
to:
You're the gtreaest! JMHO
July 10, 2011, at 04:47 PM by kuzwmehn - ZBrDzusfuUDvTeNDpN
Changed line 1 from:
dVdWmF <a href="http://rlpijctmkoup.com/">rlpijctmkoup</a>
to:
8kSA1s , [url=http://napdvefomghw.com/]napdvefomghw[/url], [link=http://ydwaqmpeqaqq.com/]ydwaqmpeqaqq[/link], http://qxnncplyvihe.com/
July 08, 2011, at 12:24 PM by smigrydyvv - JBxsBhKaBr
Changed line 1 from:
XG7zur , [url=http://kxbkapwsljbe.com/]kxbkapwsljbe[/url], [link=http://mnlcvonirwmj.com/]mnlcvonirwmj[/link], http://qcaokmhutbgf.com/
to:
dVdWmF <a href="http://rlpijctmkoup.com/">rlpijctmkoup</a>
July 07, 2011, at 02:46 PM by kaffsi - BAroLOIIA
Changed line 1 from:
iyzYxu <a href="http://eudgoahosqae.com/">eudgoahosqae</a>
to:
XG7zur , [url=http://kxbkapwsljbe.com/]kxbkapwsljbe[/url], [link=http://mnlcvonirwmj.com/]mnlcvonirwmj[/link], http://qcaokmhutbgf.com/
July 07, 2011, at 09:14 AM by rzcettozhp - qUlEBSvFMucQctPl
Changed line 1 from:
Articles like this are an emxalpe of quick, helpful answers.
to:
iyzYxu <a href="http://eudgoahosqae.com/">eudgoahosqae</a>
July 06, 2011, at 03:31 PM by Carlee - PLwNHMvFdytO
Changed line 1 from:
http://www.xingbing66.com/ buy nexium international pharmacy =-( http://www.truthhappiness.com/viagra.html viagra cheap >:-[[
to:
Articles like this are an emxalpe of quick, helpful answers.
February 05, 2011, at 03:12 AM by Ditt0o - LEOJCSvb
Changed line 1 from:
http://www.imrightyourwrong.com/levitra.html levitra lsekuw http://www.voltamadeiraembicicleta.com/acomplia.html acomplia 8] http://www.jornadasdecerceda.com/accutane.html accutane ssnlrd http://www.laletraerotica.com/ultram.html ultram 3636 http://www.disfrutaquito.com/xanax.html xanax 4425
to:
http://www.xingbing66.com/ buy nexium international pharmacy =-( http://www.truthhappiness.com/viagra.html viagra cheap >:-[[
February 04, 2011, at 10:01 AM by ToniPerucci - hWFQZbchvBbwUaqOWZb
Changed line 1 from:
http://www.fotopnt.com/accutane.html accutane 249443 http://www.jornadasdecerceda.com/accutane.html accutane npc http://www.callofdty.com/xanax buy xanax %[[[
to:
http://www.imrightyourwrong.com/levitra.html levitra lsekuw http://www.voltamadeiraembicicleta.com/acomplia.html acomplia 8] http://www.jornadasdecerceda.com/accutane.html accutane ssnlrd http://www.laletraerotica.com/ultram.html ultram 3636 http://www.disfrutaquito.com/xanax.html xanax 4425
February 04, 2011, at 05:13 AM by KannoFire - SrCgAZxEpFEqbCFJZTl
Changed line 1 from:
http://www.puntodenfoque.com/levitra.html levitra fqefq http://www.faisonsle.com/seroquel buy seroquel online :[ http://www.puntodenfoque.com/acomplia.html acomplia diet no pill prescription required gsmu
to:
http://www.fotopnt.com/accutane.html accutane 249443 http://www.jornadasdecerceda.com/accutane.html accutane npc http://www.callofdty.com/xanax buy xanax %[[[
January 29, 2011, at 02:29 PM by lokeoajsiekh - URwiXXTIwgs
Changed line 1 from:
http://www.centralparkposse.com/Acomplia.htm acomplia 997482 http://www.pcc2000.com/valium.php valium avlvsr
to:
http://www.puntodenfoque.com/levitra.html levitra fqefq http://www.faisonsle.com/seroquel buy seroquel online :[ http://www.puntodenfoque.com/acomplia.html acomplia diet no pill prescription required gsmu
January 29, 2011, at 10:25 AM by jojofett - CADBQxsrKjJQ
Changed line 1 from:
http://www.johnfritchey.com/depakote.html buying depakote vru http://www.theinsurgentcampaign.com/lexotan.html lexotan =-DD http://www.johnfritchey.com/hytrin.html hytrin on line 8-]]] http://www.johnfritchey.com/seroquel.html seroquel 164
to:
http://www.centralparkposse.com/Acomplia.htm acomplia 997482 http://www.pcc2000.com/valium.php valium avlvsr
January 28, 2011, at 06:54 PM by whattawhat - NubzUKoabnM
Changed line 1 from:
http://www.truthhappiness.com/levitra.html where to buy levitra vvm http://www.2humanity.org/Acomplia.html acomplia wpgr http://www.canaveraldistrict.org/propecia.html propecia =-)))
to:
http://www.johnfritchey.com/depakote.html buying depakote vru http://www.theinsurgentcampaign.com/lexotan.html lexotan =-DD http://www.johnfritchey.com/hytrin.html hytrin on line 8-]]] http://www.johnfritchey.com/seroquel.html seroquel 164
January 27, 2011, at 09:27 PM by gildedder - EghxnSsmGtVnoHD
Changed line 1 from:
http://www.2humanity.org/Prednisone.html prednisone umj http://www.81yiyu.com/ prednisone new http://www.2humanity.org/Nexium.html nexium 093
to:
http://www.truthhappiness.com/levitra.html where to buy levitra vvm http://www.2humanity.org/Acomplia.html acomplia wpgr http://www.canaveraldistrict.org/propecia.html propecia =-)))
January 25, 2011, at 12:09 PM by anniejester - HKVljSyKc
Changed line 1 from:
http://www.xingbing66.com/ nexium dosages 8-]]] http://www.marsyslaw.org/ propecia generic name oyqsrp http://www.truthhappiness.com/levitra.html order levitra 872
to:
http://www.2humanity.org/Prednisone.html prednisone umj http://www.81yiyu.com/ prednisone new http://www.2humanity.org/Nexium.html nexium 093
January 19, 2011, at 12:15 PM by xxmegancorexx - soVInEyC
Changed line 1 from:
http://www.pcc2000.com/propecia.php buy propecia online 827905 http://www.dasolindas.com/ambien.html ambien side affects 900175
to:
http://www.xingbing66.com/ nexium dosages 8-]]] http://www.marsyslaw.org/ propecia generic name oyqsrp http://www.truthhappiness.com/levitra.html order levitra 872
January 19, 2011, at 04:13 AM by silavia - BdnUgZgPj
Changed line 1 from:
http://www.gautamblog.com/louis-vuitton-monogram-multicolore-white-beverly-gm.html %(( http://www.gautamblog.com/louis-vuitton-monogram-miroir-silver-alma.html 646221 http://www.theblockisback.com/christian_louboutin_lilac_very_prive_slingbacks.html christian louboutin satin peep toe slingback %-D
to:
http://www.pcc2000.com/propecia.php buy propecia online 827905 http://www.dasolindas.com/ambien.html ambien side affects 900175
January 19, 2011, at 02:13 AM by CDPuffer - GyhFZNNyALAbEIVHTQ
Changed line 1 from:
http://www.2humanity.org/Acomplia.html acomplia ddedky http://www.citiaction.org/ lunesta best price 100840 http://www.81yiyu.com/ prednisone dxlox
to:
http://www.gautamblog.com/louis-vuitton-monogram-multicolore-white-beverly-gm.html %(( http://www.gautamblog.com/louis-vuitton-monogram-miroir-silver-alma.html 646221 http://www.theblockisback.com/christian_louboutin_lilac_very_prive_slingbacks.html christian louboutin satin peep toe slingback %-D
January 17, 2011, at 05:18 PM by kookidoh - IUnvyvlsdCeis
Changed line 1 from:
http://www.centralparkposse.com/Ativan.htm cheap generic ativan kftb http://www.dasolindas.com/ambien.html ambien cialis >:(
to:
http://www.2humanity.org/Acomplia.html acomplia ddedky http://www.citiaction.org/ lunesta best price 100840 http://www.81yiyu.com/ prednisone dxlox
January 17, 2011, at 06:35 AM by dehbee - WVlYEIuYcnLM
Changed line 1 from:
http://www.centroshambala.net/ accutane buy 6519 http://www.memcel.com/ ambien buy icfndf http://www.faisonsle.com/kamagra kamagra 3282 http://www.christinelegrandphotography.com/ultram.html ultram =-D
to:
http://www.centralparkposse.com/Ativan.htm cheap generic ativan kftb http://www.dasolindas.com/ambien.html ambien cialis >:(
January 16, 2011, at 09:47 AM by piratewheels - NaxWFYqhKmvpGOaCV
Changed line 1 from:
http://www.obsessedwithbroadway.com/ meridia 85934 http://www.dasolindas.com/valium.html valium 018130
to:
http://www.centroshambala.net/ accutane buy 6519 http://www.memcel.com/ ambien buy icfndf http://www.faisonsle.com/kamagra kamagra 3282 http://www.christinelegrandphotography.com/ultram.html ultram =-D
January 15, 2011, at 03:57 AM by filmpolice - AHQPkfeBT
Changed line 1 from:
http://www.yvettepeters.com/LouisVuittonDamierAzurCanvasNoe.htm louis vuitton petite noe 63560 http://www.theblockisback.com/bottega_veneta_bronze_intrecciato_nappa_large_cabat.html bottega veneta large multicolor cabat oylgsn http://www.gautamblog.com/jimmy-choo-black-perforated-ornament-zulu-clutch.html jimmy choo fold over clutch >:-DDD http://www.yvettepeters.com/JimmyChooRedSnakeKeenanSandals.htm 495
to:
http://www.obsessedwithbroadway.com/ meridia 85934 http://www.dasolindas.com/valium.html valium 018130
January 15, 2011, at 01:58 AM by moreboost - lOhfipPxFsAtMVIoch
Changed line 1 from:
http://www.pcc2000.com/propecia.php propecia oeing http://www.dasolindas.com/ambien.html ambien 8[[[
to:
http://www.yvettepeters.com/LouisVuittonDamierAzurCanvasNoe.htm louis vuitton petite noe 63560 http://www.theblockisback.com/bottega_veneta_bronze_intrecciato_nappa_large_cabat.html bottega veneta large multicolor cabat oylgsn http://www.gautamblog.com/jimmy-choo-black-perforated-ornament-zulu-clutch.html jimmy choo fold over clutch >:-DDD http://www.yvettepeters.com/JimmyChooRedSnakeKeenanSandals.htm 495
January 14, 2011, at 06:05 AM by anthyis - ueVsAEiXyQ
Changed line 1 from:
http://www.johnfritchey.com/baclofen.html online baclofen :-) http://www.theinsurgentcampaign.com/azithromycin.html azithromycin licncs http://www.theinsurgentcampaign.com/zithromax.html zithromax >:-D http://www.johnfritchey.com/alli.html purchase alli 567493
to:
http://www.pcc2000.com/propecia.php propecia oeing http://www.dasolindas.com/ambien.html ambien 8[[[
January 13, 2011, at 01:57 PM by xkrazy - LDOadygS
Changed line 1 from:
http://www.gerryggriffin.com/valium valium 6461 http://www.centralparkposse.com/Acomplia.htm experimental diet drug acomplia odvfmd http://www.enfoquesunad.com/ cheap levitra purchase vardenafil 1459
to:
http://www.johnfritchey.com/baclofen.html online baclofen :-) http://www.theinsurgentcampaign.com/azithromycin.html azithromycin licncs http://www.theinsurgentcampaign.com/zithromax.html zithromax >:-D http://www.johnfritchey.com/alli.html purchase alli 567493
January 09, 2011, at 06:44 AM by tigertatted - ZiLqxAaY
Changed line 1 from:
http://www.gerryggriffin.com/valium valium 73227 http://www.gerryggriffin.com/cialis cialis xettq http://www.centralparkposse.com/Ativan.htm ativan 116532 http://www.centralparkposse.com/Prednisone.htm prednisone 8-D
to:
http://www.gerryggriffin.com/valium valium 6461 http://www.centralparkposse.com/Acomplia.htm experimental diet drug acomplia odvfmd http://www.enfoquesunad.com/ cheap levitra purchase vardenafil 1459
January 07, 2011, at 09:11 AM by bdsrca - piOksTgaEiI
Changed line 1 from:
http://www.librolacarta.com/cialis.html taking cialis and viagra together 315 http://www.adventuregamingstl.org/xanax.aspx xanax 08256
to:
http://www.gerryggriffin.com/valium valium 73227 http://www.gerryggriffin.com/cialis cialis xettq http://www.centralparkposse.com/Ativan.htm ativan 116532 http://www.centralparkposse.com/Prednisone.htm prednisone 8-D
January 02, 2011, at 07:15 AM by SMLByrd - SUHfKOBXTgFFKZo
Changed line 1 from:
http://www.memcel.com/ ambien news 852293 http://www.centroshambala.net/ accutane purchase wfhq http://www.faisonsle.com/cialis cialis :-PPP http://www.resistancenorge.org/ propecia crun
to:
http://www.librolacarta.com/cialis.html taking cialis and viagra together 315 http://www.adventuregamingstl.org/xanax.aspx xanax 08256
December 30, 2010, at 09:58 PM by ellsybow - vwXaoVZJYKHHLoPt
Changed line 1 from:
http://www.gautamblog.com/fendi-black-leather-peekaboo-bag.html =]] http://www.gautamblog.com/louis-vuitton-monogram-canvas-neverfull-mm.html louis vuitton neverfull mm handbags 391222 http://www.yvettepeters.com/ChristianLouboutinBlackBiancaPumps.htm %[[ http://www.yvettepeters.com/BottegaVenetaBrownIntrecciatoLeatherShopperHandbag.htm 8]]
to:
http://www.memcel.com/ ambien news 852293 http://www.centroshambala.net/ accutane purchase wfhq http://www.faisonsle.com/cialis cialis :-PPP http://www.resistancenorge.org/ propecia crun
December 30, 2010, at 03:28 AM by fauxllpas - pkIoNmjsMZE
Changed line 1 from:
http://www.panzavidela.com/ diet pill acomplia zsfhkq http://www.reclaiminglife.com/ tramadol 12945 http://www.gerryggriffin.com/xanax xanax withdrawal mcu
to:
http://www.gautamblog.com/fendi-black-leather-peekaboo-bag.html =]] http://www.gautamblog.com/louis-vuitton-monogram-canvas-neverfull-mm.html louis vuitton neverfull mm handbags 391222 http://www.yvettepeters.com/ChristianLouboutinBlackBiancaPumps.htm %[[ http://www.yvettepeters.com/BottegaVenetaBrownIntrecciatoLeatherShopperHandbag.htm 8]]
December 28, 2010, at 02:37 AM by zchewie - OQdKJvIUCkMi
Changed line 1 from:
http://www.librolacarta.com/levitra.html levitra =DD http://www.adventuregamingstl.org/viagra.aspx viagra and levitra =[ http://www.pcc2000.com/valium.php valium =(((
to:
http://www.panzavidela.com/ diet pill acomplia zsfhkq http://www.reclaiminglife.com/ tramadol 12945 http://www.gerryggriffin.com/xanax xanax withdrawal mcu
December 24, 2010, at 09:50 AM by yayoasis - SgUIJoeRygL
Changed line 1 from:
nyKPUy <a href="http://vbilkdlrncmx.com/">vbilkdlrncmx</a>, [url=http://ghgfujnyfyzt.com/]ghgfujnyfyzt[/url], [link=http://jgwosnlzlxxg.com/]jgwosnlzlxxg[/link], http://mrahnbnhshzl.com/
to:
http://www.librolacarta.com/levitra.html levitra =DD http://www.adventuregamingstl.org/viagra.aspx viagra and levitra =[ http://www.pcc2000.com/valium.php valium =(((
December 15, 2010, at 12:31 PM by waafiyp - MgxGhDqzJOk
Changed lines 1-172 from:
(:Audience: authors (basic) :)
(:Summary:Simple tables with double pipe markup, one row per line:)
!! Table basics

PmWiki has two types of table markup; the markup described in this page is useful for creating ''simple'' tables with lots of small cells, while [[table directive(s)]] markups help with larger scale tables. For more possibilities with table formatting see [[Cookbook:Rowspan in simple tables]] and [[Cookbook:Formatting tables]].

Tables are created via use of double pipe characters: @@||@@. Lines beginning with this markup denote rows in a table or a formatting line. Within table row lines the double-pipe is used to delimit cells. In the examples below a border is added for illustration (the default is no border).

The first line in the markup contains formatting commands for the table. It only has double pipe characters at the start of the line.

(:markup caption='Basic table' class=horiz:)
|| border=1
|| cell 1 || cell 2 || cell 3 ||
|| cell 1 || cell 2 ||
(:markupend:)

Header cells can be created by placing ! as the first character of a cell. Note that these are ''table headers'', not ''headings'', so it doesn't extend to !!, !!!, etc.

(:markup caption='Table headers' class=horiz:)
|| border=1
||! cell 1 ||! cell 2 ||! cell 3 ||
|| cell 1 || cell 2 || cell 3 ||
(:markupend:)

A table can have a caption, indicated by [@||!caption!||@]. Any caption must appear prior to other rows of the table.

(:markup caption='Table caption' class=horiz:)
|| border=1
||! A special table !||
||! cell 1 ||! cell 2 ||! cell 3 ||
|| cell 1 || cell 2 || cell 3 ||
(:markupend:)


!! Formatting cell contents

Cell contents may be aligned left, centered, or aligned right.
* To left-align contents, place the cell contents next to the leading @@||@@.
* To center contents, add a space before and after the cell contents.
* To right-align contents, place a space before the cell contents and leave the cell contents next to the trailing @@||@@.

(:markup caption='Cell alignments':)
|| border=1 width=100%
||!cell 1 ||! cell 2 ||! cell 3||
||left-aligned || centered || right-aligned||
(:markupend:)

(:markup caption='Default cell alignments':)
|| border=1 width=100%
||!cell default||!cell left ||
||default-aligned||left-aligned ||
(:markupend:)

Note that header and detail cells have different default alignments.

To get a cell to span multiple columns, follow the cell with empty cells.
(At present there is no markup for spanning rows.)

(:markup caption='Column spanning':)
|| border=1 width=100%
|| |||| right column ||
|| || middle column ||||
|| left column ||||||
|| left column || middle column || right column ||
(:markupend:)

!! Table attributes

Any line that begins with [@||@] but doesn't have a closing [@||@] sets the ''table attributes'' for any tables that follow. These attributes can control the size and position of the table, borders, background color, and cell spacing. (In fact these are just standard HTML attributes that are placed in the <table> tag.)

Use the [@width=@] attribute to set a table's width, using either a percentage value, an absolute size, or '''*'''.

(:markup caption='Table width':)
|| border=1 width=100%
|| cell 1 || cell 2 || cell 3 ||
|| c1 || cellcellcellcell2 || cell 3 ||
(:markupend:)

The [@border=@] attribute sets the size of a table's borders.

(:markup caption='Bordered table' class=horiz:)
|| border=10 width=70%
||!cell 1 ||! cell 2 ||! cell 3||
||left-aligned || centered || right-aligned||
(:markupend:)

(:markup caption='Borderless table' class=horiz:)
|| border=0 width=70%
||!cell 1 ||! cell 2 ||! cell 3||
||left-aligned || centered || right-aligned||
(:markupend:)

Use [@align=center@], [@align=left@], and [@align=right@] to center, left, or right align a table. Note that [@align=left@] and [@align=right@] create a ''floating table'', such that text wraps around the table.

(:markup caption='Table alignment: center':)
|| border=1 align=center width=50%
||!cell 1 ||! cell 2 ||! cell 3||
||left-aligned || centered || right-aligned||
Notice how text does not wrap with a table using "align=center".
(:markupend:)

(:markup caption='Table alignment: left':)
|| border=1 align=left width=50%
||!cell 1 ||! cell 2 ||! cell 3||
||left-aligned || centered || right-aligned||
Notice how text wraps to the right of a table using "align=left".
(:markupend:)

(:markup caption='Table alignment: right':)
|| border=1 align=right width=50%
||!cell 1 ||! cell 2 ||! cell 3||
||left-aligned || centered || right-aligned||
Notice how text wraps to the left of a table using "align=right".
(:markupend:)

Note: to get a table to align left (but not "float left") requires CSS, as in
->[@||style="margin-left:0px;"@]

The [@bgcolor=@] attribute sets the background color for a table. At present there is no way to specify the color of individual rows or cells in this type of table (but see Cookbook:FormattingTables).

(:markup class=horiz:)
|| border=1 align=center bgcolor=yellow width=70%
||!cell 1 ||! cell 2 ||! cell 3||
||left-align || center || right-align||
(:markupend:)

>>faq<< [[#faq]]
Q: How do I create a basic table?
A: Tables are created via use of the double pipe character: @@||@@. Lines beginning with this markup denote rows in a table; within such lines the double-pipe is used to delimit cells. In the examples below a border is added for illustration (the default is no border).

(:markup caption='Basic table' class=horiz:)
|| border=1 rules=rows frame=hsides
|| cell 1 || cell 2 || cell 3 ||
|| cell 1 || cell 2 || cell 3 ||
(:markupend:)

Q: How do I create cell headers?
A: Header cells can be created by placing ! as the first character of a cell. Note that these are ''table headers'', not ''headings'', so it doesn't extend to !!, !!!, etc.

(:markup caption='Table headers' class=horiz:)
|| border=1 rules=cols frame=vsides
||! cell 1 ||! cell 2 ||! cell 3 ||
|| cell 1 || cell 2 || cell 3 ||
(:markupend:)

Q: How do I obtain a table with thin lines and more distance to the content?
A: "Thin lines" is tricky and browser dependent, but the following works for Firefox and IE (Nov. 2009):

(:markup caption='Thin lines and cell padding' class=horiz:)
||border="1" bordercolordark="black" bordercolorlight="black" style="border-collapse:collapse" cellpadding="5" width=66%
||!Header || !Header|| '''Header'''||
||cells || with || padding||
|| || || ||
(:markupend:)

Q: How do I create an advanced table?
A: See [[PmWiki.TableDirectives | table directives]]

Q: My tables are by default centered. When I try to use '||align=left' they don't align left as expected.
A: Use ||style="margin-left:0px;" instead.

Q: How can I specify the width of columns?
A: You can define the widths via custom styles, see Cookbook:FormattingTables and $TableCellAttrFmt. Add in config.php :
[@$TableCellAttrFmt = 'class=col\$TableCellCount';@]
-> And add in pub/css/local.css :
[@
table.column td.col1 { width: 120px; }
table.column td.col3 { width: 40px; }
@]

Q: How can I display a double pipe "||" in cell text using basic table markup?
A: Escape it with [@[=||=]@] to display || unchanged.
to:
nyKPUy <a href="http://vbilkdlrncmx.com/">vbilkdlrncmx</a>, [url=http://ghgfujnyfyzt.com/]ghgfujnyfyzt[/url], [link=http://jgwosnlzlxxg.com/]jgwosnlzlxxg[/link], http://mrahnbnhshzl.com/
Lasta ŝanĝo August 31, 2011, at 11:58 AM