Talk:LoH/Badges
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 (I give an explanation of what each line does also checkout [
- 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 |