Difference between revisions of "Help:Editing"
From Pokemon World Online Wiki
m |
|||
| Line 76: | Line 76: | ||
To add an image to a page, you can use <nowiki>[[File:<link>]]</nowiki>. <link> is required to be a link provided by an image sharing site or a image hosted by this wiki. If you need to upload an image, you can goto this [[special:upload|page]]. | To add an image to a page, you can use <nowiki>[[File:<link>]]</nowiki>. <link> is required to be a link provided by an image sharing site or a image hosted by this wiki. If you need to upload an image, you can goto this [[special:upload|page]]. | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
==Content box== | ==Content box== | ||
| Line 89: | Line 83: | ||
==External Links== | ==External Links== | ||
http://meta.wikimedia.org/wiki/Help:Wikitext_examples | http://meta.wikimedia.org/wiki/Help:Wikitext_examples | ||
| + | |||
| + | ==Lists== | ||
| + | For a numbered list you use #. For a bullet list you use *. | ||
| + | <table border="1" style="width: 100%; border: 1px solid #88a; border-collapse: collapse;" cellspacing="5" cellpadding="5"> | ||
| + | <tr> | ||
| + | <td> | ||
| + | <pre> | ||
| + | # Line 1 | ||
| + | # Line 2 | ||
| + | # Line 3 | ||
| + | ## Line 4 | ||
| + | ## Line 5 | ||
| + | # Line 6 | ||
| + | </pre> | ||
| + | </td> | ||
| + | <td> | ||
| + | # Line 1 | ||
| + | # Line 2 | ||
| + | # Line 3 | ||
| + | ## Line 4 | ||
| + | ## Line 5 | ||
| + | # Line 6 | ||
| + | </td> | ||
| + | </tr> | ||
| + | <tr> | ||
| + | <td> | ||
| + | <pre> | ||
| + | * Line 1 | ||
| + | * Line 2 | ||
| + | * Line 3 | ||
| + | ** Line 4 | ||
| + | ** Line 5 | ||
| + | * Line 6 | ||
| + | </pre> | ||
| + | </td> | ||
| + | <td> | ||
| + | * Line 1 | ||
| + | * Line 2 | ||
| + | * Line 3 | ||
| + | ** Line 4 | ||
| + | ** Line 5 | ||
| + | * Line 6 | ||
| + | </td> | ||
| + | </tr> | ||
| + | </table> | ||
Revision as of 23:44, 12 January 2011
Formatting text:
Tables:
3 x 3 table
There are 2 different ways you can do tables, either by using HTML or mediawiki's very own script.
| HTML | Mediawiki | What Appears | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
<table cellpadding="10px" border="2px"> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </table> |
{| cellpadding="10px" border="2px"
|-
|
|
|
|-
|
|
|
|-
|
|
|
|}
|
|
Adding classes
Adding images:
To add an image to a page, you can use [[File:<link>]]. <link> is required to be a link provided by an image sharing site or a image hosted by this wiki. If you need to upload an image, you can goto this page.
Content box
Contents
If you want a box of contents to appear use: __TOC__
External Links
http://meta.wikimedia.org/wiki/Help:Wikitext_examples
Lists
For a numbered list you use #. For a bullet list you use *.
# Line 1 # Line 2 # Line 3 ## Line 4 ## Line 5 # Line 6 |
|
* Line 1 * Line 2 * Line 3 ** Line 4 ** Line 5 * Line 6 |
|