User:Tdis8629
From Unforgotten Realms Wiki
Just a simple editor/importer who enjoys Lets Play and roleplaying content.
Imports
Major revisions
- Gracias
- Reformat and cleaning up links
Formatting help
After a couple of messages asking for help, I may as well create a basic wiki formatting guide. If you are fluent in X/HTML and CSS, you can also use those in place of simplified commands, or use in conjunction of when creating additional flair.
(Note: More info can be found at MediaWiki's help site)
Tables
A basic table in the the editor looks like this
{| <-- Start the table
|1,1 <-- First row, first column
|1,2 <-- First row, second column
|- <-- row break
|2,1 <-- Second row, first column
|2,2 <-- Second row, second column
|} <-- End table
|
Which makes it look like this:
| 1,1 | 1,2 |
| 2,1 | 2,2 |
To add borders to each cell, add class="wikitable" in front of {|, to make it look like this:
| 1,1 | 1,2 |
| 2,1 | 2,2 |
To add headers, use ! as your first row:
{| <-- Start the table
!1,1 <-- Header, first column
!1,2 <-- Header, second column
|- <-- row break
|2,1 <-- Second row, first column
|2,2 <-- Second row, second column
|} <-- End table
|
Which looks like this:
| 1,1 | 1,2 |
|---|---|
| 2,1 | 2,2 |


