Talk:LoH/Badges: Difference between revisions
Jump to navigation
Jump to search
LordBucket (talk | contribs) (Created page with "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...") |
(→making tables: new section) |
||
Line 2: | Line 2: | ||
[[User:LordBucket|LordBucket]] 19:31, 10 July 2012 (CDT) | [[User:LordBucket|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 | |||
{| class="wikitable" width="60%" | |||
| | |||
<nowiki>{|</nowiki> | |||
| '''table start''' | |||
|- | |||
| | |||
<nowiki>|+</nowiki> | |||
| table '''caption,''' ''optional;'' only between '''table start''' and first '''table row''' | |||
|- | |||
| | |||
<nowiki>|-</nowiki> | |||
| '''table row,''' ''optional on first row'' -- wiki engine assumes the first row | |||
|- | |||
| | |||
<nowiki>!</nowiki> | |||
| '''table header''' cell, ''optional.'' Consecutive '''table header''' cells may be added on same line separated by double marks (<code>!!</code>) or start on new lines, each with its own single mark (<code>!</code>). | |||
|- | |||
| | |||
<nowiki>|</nowiki> | |||
| '''table data''' cell, ''required!'' Consecutive '''table data''' cells may be added on same line separated by double marks (<code><nowiki>||</nowiki></code>) or start on new lines, each with its own single mark (<code><nowiki>|</nowiki></code>). | |||
|- | |||
| | |||
<nowiki>|}</nowiki> | |||
| '''table end''' | |||
|} | |||
* Code | |||
<pre> | |||
{| border="1" | | |||
|- | |||
! Name | |||
! Number | |||
|- | |||
| Bob | |||
| 1 | |||
|- | |||
| Sue | |||
| 2 | |||
|- | |||
|New-line | |||
Joe | |||
|3 | |||
|} | |||
</pre> | |||
* Makes | |||
{| border="1" | | |||
|- | |||
! Name | |||
! Number | |||
|- | |||
| Bob | |||
| 1 | |||
|- | |||
| Sue | |||
| 2 | |||
|- | |||
|New-line | |||
Joe | |||
|3 | |||
|} | |||
[[User:Zoycite|Zoycite]] ([[User talk:Zoycite|talk]]) |
Revision as of 20:59, 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 (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 |