Difference between revisions of "Help:Editing"
From Pokemon World Online Wiki
m (Categorized it under "Wiki Editing".) |
|||
| (11 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
==Formatting text:== | ==Formatting text:== | ||
| + | There are a wide range of text formats available for use in the wiki markup language. | ||
| + | {| border="1" cellspacing="1" cellpadding="2" border: 1px solid #88a | ||
| + | ! style="background: #f8f8ff" width="125" | Formatting type | ||
| + | ! style="background: #f8f8ff" width="150" | Input | ||
| + | ! style="background: #f8f8ff" width="200" | Output | ||
| + | |- | ||
| + | | style="text-align: center;"| Bold || <pre><nowiki>'''An example of bold text'''</nowiki></pre> || '''An example of bold text''' | ||
| + | |- | ||
| + | | style="text-align: center;"| Italics || <pre><nowiki>''An example of italicized text''</nowiki></pre> || ''An example of italicized text'' | ||
| + | |- | ||
| + | | style="text-align: center;"| Colored text || <pre><nowiki><div style="color:#A040A0 | ||
| + | ">Purple text</div></nowiki></pre> || <div style="color:#A040A0 | ||
| + | ">Purple text</div> | ||
| + | |- | ||
| + | | style="text-align: center;"| Colored background || <pre><nowiki><div style="background:#F08030 | ||
| + | ">An orange background</div></nowiki></pre> || <div style="background:#F08030 | ||
| + | ">An orange background</div> | ||
| + | |- | ||
| + | | style="text-align: center;"| Text sizes || <pre><nowiki><small>Small text</small> and <big>big text</big></nowiki></pre> || <small>Small text</small> and <big>big text</big> | ||
| + | |- | ||
| + | |} | ||
==Tables:== | ==Tables:== | ||
| + | ===3 x 3 table=== | ||
| + | There are 2 different ways you can do tables, either by using HTML or mediawiki's very own script.<br /> | ||
| + | <table border="1" style="width: 100%; border: 1px solid #88a; border-collapse: collapse;" cellspacing="5"> | ||
| + | <tr> | ||
| + | <th>HTML</th> | ||
| + | <th>Mediawiki</th> | ||
| + | <th>What Appears</th> | ||
| + | </tr> | ||
| + | <tr> | ||
| + | <td> | ||
| + | <pre> | ||
| + | <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> | ||
| + | </pre> | ||
| + | </td> | ||
| + | <td> | ||
| + | <pre> | ||
| + | {| cellpadding="10px" border="2px" | ||
| + | |- | ||
| + | | | ||
| + | | | ||
| + | | | ||
| + | |- | ||
| + | | | ||
| + | | | ||
| + | | | ||
| + | |- | ||
| + | | | ||
| + | | | ||
| + | | | ||
| + | |} | ||
| + | </pre> | ||
| + | </td> | ||
| + | <td> | ||
| + | <table cellpadding="10px" border="2px" align="center"> | ||
| + | <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> | ||
| + | </td> | ||
| + | </tr> | ||
| + | </table> | ||
| + | ===Adding classes=== | ||
==Adding images:== | ==Adding images:== | ||
| Line 7: | Line 98: | ||
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== |
| − | + | __TOC__ | |
| − | * | + | If you want a box of contents to appear use: <nowiki>__TOC__</nowiki> |
| − | + | ||
| − | * | + | ==External Links== |
| + | http://meta.wikimedia.org/wiki/Help:Wikitext_examples | ||
| + | |||
| + | ==Lists== | ||
| + | For a numbered list you use #. For a bullet list you use *. For indents 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> | ||
| + | <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> | ||
| + | |||
| + | [[Category:Wiki Editing]] | ||
Latest revision as of 08:51, 4 March 2014
Formatting text:
There are a wide range of text formats available for use in the wiki markup language.
| Formatting type | Input | Output |
|---|---|---|
| Bold | '''An example of bold text''' |
An example of bold text |
| Italics | ''An example of italicized text'' |
An example of italicized text |
| Colored text | <div style="color:#A040A0 ">Purple text</div> |
Purple text
|
| Colored background | <div style="background:#F08030 ">An orange background</div> |
An orange background
|
| Text sizes | <small>Small text</small> and <big>big text</big> |
Small text and big 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 *. For indents 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 |
|
: Line 1 : Line 2 : Line 3 :: Line 4 :: Line 5 : Line 6 |
|