Talk:LoH/Badges

From zoywiki.com
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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

Zoycite (talk)

adding newlines

so i figured out a couple ways to make newlines,

The first is simply to just include an extra line between lines.

You should also be able to use the <br /> HTML tag, such as


This is a line right below the above line in wiki mark up but below the previous line because of line breaks

Code of the Above:

so i figured out a couple ways to make newlines,

The first is simply to just include an extra line between lines.

You should also be able to use the <br /> HTML tag, such as <br /><br /><br />
This is a line right below the above line in wiki mark up but below the previous line because of line breaks

Zoycite (talk) 15:06, 2 August 2012 (MDT)