Talk:LoH/Badges: Difference between revisions
Jump to navigation
Jump to search
(→making tables: new section) |
|||
Line 5: | Line 5: | ||
== making tables == | == making tables == | ||
Making tables is pretty easy just copy the code | Making tables is pretty easy just copy the code. Also if you could provide the code of what you are trying to do would help so the template can be installed. | ||
* Explanation | * Explanation |
Revision as of 21:00, 2 August 2012
Class badge data is available here: http://www.lohgame.com/forum/showthread.php?50-Badges-Effects-and-Costs but after 30 minutes of trying to get the the basic formatting to work I think I'm done trying to move that data over here. Wikimarkup newline tags don't seem to work on this wiki and there's no help file at all.
LordBucket 19:31, 10 July 2012 (CDT)
making tables
Making tables is pretty easy just copy the code. Also if you could provide the code of what you are trying to do would help so the template can be installed.
- Explanation
{| |
table start |
|+ |
table caption, optional; only between table start and first table row |
|- |
table row, optional on first row -- wiki engine assumes the first row |
! |
table header cell, optional. Consecutive table header cells may be added on same line separated by double marks (!! ) or start on new lines, each with its own single mark (! ).
|
| |
table data cell, required! Consecutive table data cells may be added on same line separated by double marks (|| ) or start on new lines, each with its own single mark (| ).
|
|} |
table end |
- Code
{| border="1" | |- ! Name ! Number |- | Bob | 1 |- | Sue | 2 |- |New-line Joe |3 |}
- Makes
Name | Number |
---|---|
Bob | 1 |
Sue | 2 |
New-line
Joe |
3 |