Difference between revisions of "Help:Editing"

From Wiki - Scioly.org
Jump to navigation Jump to search
m
Line 142: Line 142:
 
[[Main Page]]
 
[[Main Page]]
  
[[Introduction#Internal Links]]
+
[[Help:Editing#Internal Links]]
  
[[Introduction#Internal Links|Internal Links]]
+
[[Help:Editing#Internal Links|Internal Links]]
  
 
===External Links===
 
===External Links===

Revision as of 22:15, 7 July 2008

Here is a list of a few handy wiki commands:

Also, look at these for a more complete listing:

Cheatsheet

How To Edit A Page

Lists

Unordered Lists

Unordered lists are bulleted.

Code:

*List Entry1
**List Entry2

Result:

  • List Entry1
    • List Entry2

Ordered Lists

Ordered lists are numbered.

Code:

#List Entry1
#List Entry2
##List Entry3

Result:

  1. List Entry1
  2. List Entry2
    1. List Entry3

Indented Lists

Indented lists are simply indented.

Code:

:List Entry1
:List Entry2
::List Entry3

Result:

List Entry1
List Entry2
List Entry3

Tables

Basic Table

Code:

{|
|+Example Table
!Heading 1
!Heading 2
!Heading 3
|-
!Row Heading 1
|Row Entry 1
|Row Entry 2
|-
!Row Heading 2
|Row Entry 3
|Row Entry 4
|-
!Row Heading 3
|Row Entry 5
|Row Entry 6
|-
|}

Result:

Example Table
Heading 1 Heading 2 Heading 3
Row Heading 1 Row Entry 1 Row Entry 2
Row Heading 2 Row Entry 3 Row Entry 4
Row Heading 3 Row Entry 5 Row Entry 6

Skinned Table

Use class="wikitable" to make your tables look nice.

Code:

{|class="wikitable"
|+Example Table
!Heading 1
!Heading 2
!Heading 3
|-
!Row Heading 1
|Row Entry 1
|Row Entry 2
|-
!Row Heading 2
|Row Entry 3
|Row Entry 4
|-
!Row Heading 3
|Row Entry 5
|Row Entry 6
|-
|}

Result:

Example Table
Heading 1 Heading 2 Heading 3
Row Heading 1 Row Entry 1 Row Entry 2
Row Heading 2 Row Entry 3 Row Entry 4
Row Heading 3 Row Entry 5 Row Entry 6

Links

Internal Links

Links to pages within the wiki.

Code:

[[Main Page]]
[[Help:Editing#Internal Links]]
[[Help:Editing#Internal Links|Internal Links]]

Result

Main Page

Help:Editing#Internal Links

Internal Links

External Links

Links to pages outside of the wiki.

Code:

[http://www.soinc.org]
[http://www.soinc.org Science Olympiad]

Result

[1]

Science Olympiad

Images

Code:

[[Image:Nh_mosquito_epicurve_week53.jpg]]

Result

Nh mosquito epicurve week53.jpg

To upload new image, input this, then hit preview and click on the red link. That will lead you to a place where you can upload the file.

Code:

[[Image:NewImageName.jpg]]

Result

File:NewImageName.jpg

Headings

Code:

=Fake Heading1=

Result:

Fake Heading1

Code:

==Fake Heading2==

Result:

Fake Heading2