[ Disclaimer, Create new user --- Wiki markup help, Install P99 ]
Difference between revisions of "Help:Editing"
Zosymandias (Talk | contribs) |
m |
||
| (14 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
| − | Copy of [https://en.wikipedia.org/wiki/Help:Cheatsheet Cheatsheet] from Wikipedia | + | Copy of [https://en.wikipedia.org/wiki/Help:Cheatsheet Cheatsheet] from Wikipedia. Because it was copied manually it may have some omissions, and you are encouraged to visit the original. |
| + | |||
| + | See also: [[Help:Contents]] for an explanation of non-generic-MediaWiki features (ie. stuff that's unique to this wiki). | ||
{|align="center" style="width:100%; border:2px #a3b1bf solid; background:#f5faff; text-align:left;" | {|align="center" style="width:100%; border:2px #a3b1bf solid; background:#f5faff; text-align:left;" | ||
| Line 107: | Line 109: | ||
|colspan="3" style="border-top:1px solid #cee0f2;"| | |colspan="3" style="border-top:1px solid #cee0f2;"| | ||
|- | |- | ||
| − | |[ | + | |[https://en.wikipedia.org/wiki/Wikipedia:Picture_tutorial Show an image] |
<div style="padding: 0.7em .5em; font-size:0.9em;">''for uploading, see the [[Special:Upload|intro to uploading images]] | <div style="padding: 0.7em .5em; font-size:0.9em;">''for uploading, see the [[Special:Upload|intro to uploading images]] | ||
''</div> | ''</div> | ||
| Line 227: | Line 229: | ||
::::fourth indent | ::::fourth indent | ||
|} | |} | ||
| + | |||
| + | |||
| + | == Tables == | ||
| + | |||
| + | === Wiki Tables === | ||
| + | {| class="wikitable" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |} | ||
| + | |||
| + | <pre>{| class="wikitable" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |}</pre> | ||
| + | |||
| + | === Notes === | ||
| + | |||
| + | Item templates (eg. <code><nowiki>{{:Fungus Covered Scale Tunic}}</nowiki></code>, {{:Fungus Covered Scale Tunic}}) will usually not work inside these tables. You have to use HTML tables instead. | ||
| + | |||
| + | === HTML Tables === | ||
| + | |||
| + | Instead of using wiki syntax, you can also use HTML to create tables (which ''will'' work with item links): | ||
| + | |||
| + | <table class="wikitable"> | ||
| + | <caption>Caption: example table</caption> | ||
| + | <tr> | ||
| + | <th>header1</th> | ||
| + | <th>header2</th> | ||
| + | <th>header3</th> | ||
| + | </tr><tr> | ||
| + | <td>row1cell1</td> | ||
| + | <td>row1cell2</td> | ||
| + | <td>row1cell3</td> | ||
| + | </tr><tr> | ||
| + | <td>row2cell1</td> | ||
| + | <td>row2cell2</td> | ||
| + | <td>row2cell3</td> | ||
| + | </tr> | ||
| + | </table> | ||
| + | |||
| + | <pre><table class="wikitable"> | ||
| + | <caption>Caption: example table</caption> | ||
| + | <tr> | ||
| + | <th>header1</th> | ||
| + | <th>header2</th> | ||
| + | <th>header3</th> | ||
| + | </tr><tr> | ||
| + | <td>row1cell1</td> | ||
| + | <td>row1cell2</td> | ||
| + | <td>row1cell3</td> | ||
| + | </tr><tr> | ||
| + | <td>row2cell1</td> | ||
| + | <td>row2cell2</td> | ||
| + | <td>row2cell3</td> | ||
| + | </tr> | ||
| + | </table></pre> | ||
| + | |||
| + | === Table Classes === | ||
| + | |||
| + | Both table styles can use classes (as well as HTML style attributes) to change the table's appearance. | ||
| + | |||
| + | ==== wikitable Class Example ==== | ||
| + | |||
| + | The default wiki style table uses a class of "wikitable": | ||
| + | |||
| + | {| class="wikitable" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |} | ||
| + | |||
| + | <pre>{| class="wikitable" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |}</pre> | ||
| + | |||
| + | ==== eoTable Class Example ==== | ||
| + | |||
| + | {| class="eoTable" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |} | ||
| + | |||
| + | <pre>{| class="eoTable" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |}</pre> | ||
| + | |||
| + | ==== eoTable2 Class Example ==== | ||
| + | |||
| + | {| class="wikitable eoTable2" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |} | ||
| + | |||
| + | <pre>{| class="wikitable eoTable2" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |}</pre> | ||
| + | |||
| + | ==== eoTable3 Class Example ==== | ||
| + | |||
| + | {| class="eoTable3" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |} | ||
| + | |||
| + | <pre>{| class="eoTable3" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |}</pre> | ||
| + | |||
| + | ==== sortable Class Example ==== | ||
| + | |||
| + | {| class="sortable" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |} | ||
| + | |||
| + | <pre>{| class="sortable" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |}</pre> | ||
| + | |||
| + | ==== eoTable3 + sortable Class Example ==== | ||
| + | |||
| + | Classes can also be combined, so you can have (for instance) a "sortable eoTable3" table: | ||
| + | |||
| + | {| class="eoTable3 sortable" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |} | ||
| + | |||
| + | <pre>{| class="eoTable3 sortable" | ||
| + | |+ Caption: example table | ||
| + | |- | ||
| + | ! header1 | ||
| + | ! header2 | ||
| + | ! header3 | ||
| + | |- | ||
| + | | row1cell1 | ||
| + | | row1cell2 | ||
| + | | row1cell3 | ||
| + | |- | ||
| + | | row2cell1 | ||
| + | | row2cell2 | ||
| + | | row2cell3 | ||
| + | |}</pre> | ||
Latest revision as of 04:26, 7 July 2021
Copy of Cheatsheet from Wikipedia. Because it was copied manually it may have some omissions, and you are encouraged to visit the original.
See also: Help:Contents for an explanation of non-generic-MediaWiki features (ie. stuff that's unique to this wiki).
| ||
|
| ||
| Description | You type | You get |
| Italics, bold, and both |
''italics'', '''bold''', and '''''both''''' |
italics, bold, and both |
| Link You can also use a pipe, or both |
[[Tradeskill]] |
|
|
Link to a section |
[[Brewing#Leveling Guide]] |
|
| Signature
sign your contributions when posting to a talk page
|
~~~~ |
|
| Plain website |
http://www.wikipedia.org |
|
| Link a website |
[http://www.wikipedia.org] |
|
| Link and name a website |
[http://www.wikipedia.org Wikipedia] |
|
| Strike your talk page comment
to show your previous comment is outdated
|
<s>[[Roots]] are the best food.</s> |
|
| Underline your text |
<u>This topic is notable</u> |
This topic is notable |
| Hide text somewhere for editors |
<!--This had consensus, discuss at talk page--> |
|
| Show an image
for uploading, see the intro to uploading images
| ||
| Add a page to a category | [[Category:Category name]] place near the bottom of a page |
shows "Category name" in a bar at bottom when the page is previewed or saved |
| Link to a category | [[:Category:Category name]] | |
|
| ||
| Add a Templet to a page | [[Category:Category name]] place near the bottom of a page |
shows "Category name" in a bar at bottom when the page is previewed or saved |
| Link to a category | [[:Category:Category name]] | |
|
| ||
|
Works only at the beginning of lines | ||
| Description | You type | You get |
| Redirect to another page
redirects must be placed at the start of the first line
|
#REDIRECT [[Target pageName]] |
|
| Redirect to a section of another page |
#REDIRECT [[Target pageName#anchorName]] |
|
| Section headings a Table of Contents will automatically be generated when four headings are added to an article
|
==Level 2== |
Level 2Level 3Level 4Level 5Level 6 |
| Bulleted list |
* One |
|
| Numbered list |
# One |
|
| Indenting text
this is used when replying on a talk page, to make it easier to follow conversations.
|
no indent (normal) |
no indent (normal)
|
Tables
Wiki Tables
| header1 | header2 | header3 |
|---|---|---|
| row1cell1 | row1cell2 | row1cell3 |
| row2cell1 | row2cell2 | row2cell3 |
{| class="wikitable"
|+ Caption: example table
|-
! header1
! header2
! header3
|-
| row1cell1
| row1cell2
| row1cell3
|-
| row2cell1
| row2cell2
| row2cell3
|}
Notes
Item templates (eg.{{:Fungus Covered Scale Tunic}}, LORE ITEM
Slot: CHEST
AC: 21
STR: +2 DEX: -10 INT: +2 AGI: -10
Effect: Fungal Regrowth (Worn)
WT: 2.0 Size: SMALL
Class: WAR CLR PAL RNG SHD DRU MNK BRD ROG SHM
Race: ALL
HTML Tables
Instead of using wiki syntax, you can also use HTML to create tables (which will work with item links):
| header1 | header2 | header3 |
|---|---|---|
| row1cell1 | row1cell2 | row1cell3 |
| row2cell1 | row2cell2 | row2cell3 |
<table class="wikitable"> <caption>Caption: example table</caption> <tr> <th>header1</th> <th>header2</th> <th>header3</th> </tr><tr> <td>row1cell1</td> <td>row1cell2</td> <td>row1cell3</td> </tr><tr> <td>row2cell1</td> <td>row2cell2</td> <td>row2cell3</td> </tr> </table>
Table Classes
Both table styles can use classes (as well as HTML style attributes) to change the table's appearance.
wikitable Class Example
The default wiki style table uses a class of "wikitable":
| header1 | header2 | header3 |
|---|---|---|
| row1cell1 | row1cell2 | row1cell3 |
| row2cell1 | row2cell2 | row2cell3 |
{| class="wikitable"
|+ Caption: example table
|-
! header1
! header2
! header3
|-
| row1cell1
| row1cell2
| row1cell3
|-
| row2cell1
| row2cell2
| row2cell3
|}
eoTable Class Example
| header1 | header2 | header3 |
|---|---|---|
| row1cell1 | row1cell2 | row1cell3 |
| row2cell1 | row2cell2 | row2cell3 |
{| class="eoTable"
|+ Caption: example table
|-
! header1
! header2
! header3
|-
| row1cell1
| row1cell2
| row1cell3
|-
| row2cell1
| row2cell2
| row2cell3
|}
eoTable2 Class Example
| header1 | header2 | header3 |
|---|---|---|
| row1cell1 | row1cell2 | row1cell3 |
| row2cell1 | row2cell2 | row2cell3 |
{| class="wikitable eoTable2"
|+ Caption: example table
|-
! header1
! header2
! header3
|-
| row1cell1
| row1cell2
| row1cell3
|-
| row2cell1
| row2cell2
| row2cell3
|}
eoTable3 Class Example
| header1 | header2 | header3 |
|---|---|---|
| row1cell1 | row1cell2 | row1cell3 |
| row2cell1 | row2cell2 | row2cell3 |
{| class="eoTable3"
|+ Caption: example table
|-
! header1
! header2
! header3
|-
| row1cell1
| row1cell2
| row1cell3
|-
| row2cell1
| row2cell2
| row2cell3
|}
sortable Class Example
| header1 | header2 | header3 |
|---|---|---|
| row1cell1 | row1cell2 | row1cell3 |
| row2cell1 | row2cell2 | row2cell3 |
{| class="sortable"
|+ Caption: example table
|-
! header1
! header2
! header3
|-
| row1cell1
| row1cell2
| row1cell3
|-
| row2cell1
| row2cell2
| row2cell3
|}
eoTable3 + sortable Class Example
Classes can also be combined, so you can have (for instance) a "sortable eoTable3" table:
| header1 | header2 | header3 |
|---|---|---|
| row1cell1 | row1cell2 | row1cell3 |
| row2cell1 | row2cell2 | row2cell3 |
{| class="eoTable3 sortable"
|+ Caption: example table
|-
! header1
! header2
! header3
|-
| row1cell1
| row1cell2
| row1cell3
|-
| row2cell1
| row2cell2
| row2cell3
|}