Difference between revisions of "How to Make a Wiki"

(Formatting an Image)
 
(14 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
You must first login to make a wiki. Do so on the toolbar on the side.
 +
 
==Creating a Page==
 
==Creating a Page==
 
Search the page name that you wish to create. If the page doesn't exist, this message will appear:
 
Search the page name that you wish to create. If the page doesn't exist, this message will appear:
Line 11: Line 13:
 
#Under the '''Views''' section, click '''Edit'''  
 
#Under the '''Views''' section, click '''Edit'''  
 
Now you are editing your entire page.
 
Now you are editing your entire page.
 +
 +
===Formatting a Page===
 +
*To write in bold use three single quotation marks around the text: <pre>'''To Boldly Go'''</pre>
 +
shows up as '''To Boldly Go'''
 +
 +
*To write in italics use two single quotation marks:
 +
<pre>''Italics''</pre>
 +
shows up as ''Italics.''
 +
 +
*To create a heading, use two equals signs before and after your text:
 +
<pre>==Heading==</pre>
 +
 +
*To create subheadings, simply add more equals signs. The more you add, the smaller the heading will be.
 +
<pre>===Subheading===</pre>
 +
<pre>====Smaller Subheading====</pre>
 +
 +
*To show the code for something you are writing, put <.pre> in front of the code and <./pre> at the end, without the periods between the characters.
  
 
==Making a List==
 
==Making a List==
 
There are two ways to make a list - numerically and with bullet points.
 
There are two ways to make a list - numerically and with bullet points.
 +
 +
==Adding A Link==
 +
*To add a link you do a left braket, type the link in, type a space, and then type the name of the link
 +
*[link address name of link]
  
 
====Numerical Lists====
 
====Numerical Lists====
Line 19: Line 42:
  
 
For example,
 
For example,
<pre>#Boil Potatoes
+
<pre>#Boil potatoes
#Mash Potatoes
+
#Mash potatoes
#Stick Potatoes in a stew.</pre>
+
#Stick potatoes in a stew.</pre>
  
 
Should read:
 
Should read:
#Boil Potatoes
+
#Boil potatoes
#Mash Potatoes
+
#Mash potatoes
#Stick Potatoes in a stew.
+
#Stick potatoes in a stew.
 
====Bullet points====
 
====Bullet points====
 
To make a bullet-point list put a star,'*', in front of each item.
 
To make a bullet-point list put a star,'*', in front of each item.
Line 43: Line 66:
  
 
==Inserting an Image==
 
==Inserting an Image==
#On the left toolbar, scroll down to '''Toolbox'''
+
#On the left toolbar, scroll down to '''Tools'''
 
#Select '''Upload file'''
 
#Select '''Upload file'''
 
#Under 'Source File', hit the '''Upload File''' button
 
#Under 'Source File', hit the '''Upload File''' button
Line 50: Line 73:
  
 
Go to the page you are editing and navigate to the section where you want the image, in edit mode. On the toolbar above the main text of your page, click on the '''Embedded File''' button, which looks like a portrait.
 
Go to the page you are editing and navigate to the section where you want the image, in edit mode. On the toolbar above the main text of your page, click on the '''Embedded File''' button, which looks like a portrait.
 
+
[[File:Spiritwolf.png|200px|thumb|right|This is a spirit wolf.]]
 
Text saying <pre>[[File:Example.jpg]]</pre>should appear. Put the name of your file in place of '''Example.jpg'''. The name of the file should match the name of the file you uploaded.
 
Text saying <pre>[[File:Example.jpg]]</pre>should appear. Put the name of your file in place of '''Example.jpg'''. The name of the file should match the name of the file you uploaded.
  
 
Your image should appear as the full version of your file.
 
Your image should appear as the full version of your file.
  
[[File:Spiritwolf.png|200px|thumb|right|This is a spirit wolf.]]
 
 
===Formatting an Image===
 
===Formatting an Image===
To move an image to the left or right of the page, use this text:
+
*To move an image to the left or right of the page, use this text:
 
<pre>[[File:Example.jpg|left]]</pre>
 
<pre>[[File:Example.jpg|left]]</pre>
 
<pre>[[File:Example.jpg|right]]</pre>
 
<pre>[[File:Example.jpg|right]]</pre>
  
  
To adjust the size of an image:
+
*To adjust the size of an image:
 
<pre>[[File:Example.jpg|300px|thumb]]</pre>
 
<pre>[[File:Example.jpg|300px|thumb]]</pre>
 
This example will produce a 300-pixel wide rendition of your image. Change the '300px' to whatever size you desire.
 
This example will produce a 300-pixel wide rendition of your image. Change the '300px' to whatever size you desire.
  
  
To have a description beneath your image, just type your description after a '|'.  
+
*To have a description beneath your image, just type your description after a '|'.  
<pre>[[File:Example.jpg|This image is on the left.]]</pre>
+
<pre>[[File:Example.jpg|left|This image is on the left.]]</pre>
  
  
To combine them all, as in the example image on this page:
+
*To combine them all, as in the example image on this page:
 
<pre>[[File:Spiritwolf.png|200px|thumb|right|This is a spirit wolf.]]</pre>
 
<pre>[[File:Spiritwolf.png|200px|thumb|right|This is a spirit wolf.]]</pre>
 +
 +
==Making a Table==
 +
{| class="wikitable" border="1"
 +
|-
 +
! header 1
 +
! header 2
 +
! header 3
 +
|-
 +
| row 1, cell 1
 +
| row 1, cell 2
 +
| row 1, cell 3
 +
|-
 +
| row 2, cell 1
 +
| row 2, cell 2
 +
| row 2, cell 3
 +
|}
 +
 +
To make a table such as the one above, use this code:
 +
<pre>{| class="wikitable" border="1"
 +
|-
 +
! header 1
 +
! header 2
 +
! header 3
 +
|-
 +
| row 1, cell 1
 +
| row 1, cell 2
 +
| row 1, cell 3
 +
|-
 +
| row 2, cell 1
 +
| row 2, cell 2
 +
| row 2, cell 3
 +
|}</pre>
 +
 +
Where '''Header 1''' is, insert your own header, keeping all other formatting the same. Do the same with '''"Row 1, cell 1"''', replacing it with your own table contents.
 +
 +
To change the size of the table, add or take out '''Header''' and '''row/cell''' sections as needed.
 +
 +
[[Category:Tutorials]]

Latest revision as of 13:44, 13 May 2020

You must first login to make a wiki. Do so on the toolbar on the side.

Creating a Page

Search the page name that you wish to create. If the page doesn't exist, this message will appear:

"There were no results matching the query. Create the page "How to Make a Wiki" on this wiki!"

The name of your page will show up in red. Click this name and it will bring you to your new empty page.

Editing a Page

Once your page is created, use the toolbar on the left-hand side of the page.

  1. View your page
  2. Under the Views section, click Edit

Now you are editing your entire page.

Formatting a Page

  • To write in bold use three single quotation marks around the text:
    '''To Boldly Go'''

shows up as To Boldly Go

  • To write in italics use two single quotation marks:
''Italics''

shows up as Italics.

  • To create a heading, use two equals signs before and after your text:
==Heading==
  • To create subheadings, simply add more equals signs. The more you add, the smaller the heading will be.
===Subheading===
====Smaller Subheading====
  • To show the code for something you are writing, put <.pre> in front of the code and <./pre> at the end, without the periods between the characters.

Making a List

There are two ways to make a list - numerically and with bullet points.

Adding A Link

  • To add a link you do a left braket, type the link in, type a space, and then type the name of the link
  • [link address name of link]

Numerical Lists

To make a numerical list, put '#' in front of each item.

For example,

#Boil potatoes
#Mash potatoes
#Stick potatoes in a stew.

Should read:

  1. Boil potatoes
  2. Mash potatoes
  3. Stick potatoes in a stew.

Bullet points

To make a bullet-point list put a star,'*', in front of each item.

For example,

*This
*Is
*A
*List

Should read:

  • This
  • Is
  • A
  • List

Inserting an Image

  1. On the left toolbar, scroll down to Tools
  2. Select Upload file
  3. Under 'Source File', hit the Upload File button
  4. Find the file you wish to upload and select it.
  5. Scroll down and hit Upload File

Go to the page you are editing and navigate to the section where you want the image, in edit mode. On the toolbar above the main text of your page, click on the Embedded File button, which looks like a portrait.

This is a spirit wolf.

Text saying

[[File:Example.jpg]]

should appear. Put the name of your file in place of Example.jpg. The name of the file should match the name of the file you uploaded.

Your image should appear as the full version of your file.

Formatting an Image

  • To move an image to the left or right of the page, use this text:
[[File:Example.jpg|left]]
[[File:Example.jpg|right]]


  • To adjust the size of an image:
[[File:Example.jpg|300px|thumb]]

This example will produce a 300-pixel wide rendition of your image. Change the '300px' to whatever size you desire.


  • To have a description beneath your image, just type your description after a '|'.
[[File:Example.jpg|left|This image is on the left.]]


  • To combine them all, as in the example image on this page:
[[File:Spiritwolf.png|200px|thumb|right|This is a spirit wolf.]]

Making a Table

header 1 header 2 header 3
row 1, cell 1 row 1, cell 2 row 1, cell 3
row 2, cell 1 row 2, cell 2 row 2, cell 3

To make a table such as the one above, use this code:

{| class="wikitable" border="1"
|-
! header 1
! header 2
! header 3
|-
| row 1, cell 1
| row 1, cell 2
| row 1, cell 3
|-
| row 2, cell 1
| row 2, cell 2
| row 2, cell 3
|}

Where Header 1 is, insert your own header, keeping all other formatting the same. Do the same with "Row 1, cell 1", replacing it with your own table contents.

To change the size of the table, add or take out Header and row/cell sections as needed.