Difference between revisions of "Article Creation Guide"

From UnderlightWiki
Jump to: navigation, search
m (removed pre-sot)
Line 76: Line 76:
==Collapsible Wiki Tables==
==Collapsible Wiki Tables==


Collapsible wiki tables can be used to add heaps of information to an article that is nice to have, but maybe doesn't need to take up space every time you look at the page. [[Pre-SoT]] info is a perfect example of this. It's nice to have that info, but it's also nice to keep it clearly separate, so that no one gets confused and takes it into SoT.
Collapsible wiki tables can be used to add heaps of information to an article that is nice to have, but maybe doesn't need to take up space every time you look at the page.


There is an incredibly detailed and varied number of things you can do with Wiki tables, and you can find all the examples of them on the page linked below in links and references. This example will just be a quick and dirty way to make nice little hidden info boxes.
There is an incredibly detailed and varied number of things you can do with Wiki tables, and you can find all the examples of them on the page linked below in links and references. This example will just be a quick and dirty way to make nice little hidden info boxes.
Line 84: Line 84:


Then you need to add a title (header) for the table, which starts with an exclamation mark, for example:
Then you need to add a title (header) for the table, which starts with an exclamation mark, for example:
* <nowiki>! Old Art Information   [[Pre-SoT]]</nowiki>
* <nowiki>! Old Art Information</nowiki>


Then you add the following characters to separate your header from the body of your table:
Then you add the following characters to separate your header from the body of your table:
Line 99: Line 99:
|-
|-
|<pre>{| class="wikitable collapsible collapsed" style="width:100%"
|<pre>{| class="wikitable collapsible collapsed" style="width:100%"
! Old Art Information   [[Pre-SoT]]
! Old Art Information
|-
|-
|
|
Line 111: Line 111:


{| class="wikitable collapsible collapsed" style="width:100%"
{| class="wikitable collapsible collapsed" style="width:100%"
! Old Art Information   [[Pre-SoT]]
! Old Art Information
|-
|-
|
|

Revision as of 11:28, 7 July 2015

Creating Articles

  • First and foremost, visit the rules section.
  • Next, Use the search field to find out if the topic has already been made. If it has been made, that page should load up for editing. Otherwise, if it has not been created yet, you should see a "create this page" highlighted in red on the search results page, towards the top. Click on the link to get started editing.

Wiki Links

Creating links to other wikis within your article is easy to do. So lets say you wanted to send someone to the Purple Fuzzy Bunny article, you can do so by placing square brackets around the word, like this.

  • [[Purple Fuzzy Bunny]]

If this article exists, the link will be blue. If it doesn't exist, then the link will be red. This could also be a good way to suggest that someone should create that article.

In some cases, it may be necessary to create a link to an article that uses different text. This is achieved by writing

  • [[Willpower|Gatekeeper]]

To see the result, compare Gatekeeper with Gatekeeper. On that note...

Redirect Pages

In Underlight, we have many names for similar concepts, and on this wiki, a lot of the information is organised into categories, which can make directing readers to a particular page somewhat troublesome. Here are a few examples:

  • Library of Souls, the old name for Library of Idoaclese.
  • Umbric Planes, a common misspelling of Umbric Plains might cause trouble for someone using the search box.
  • Chakram, which actually does not have its own page but is a subsection of Category:Talismans.

It is not always efficient to use the above method of having text link to a page of a different name. This is what redirect pages are for. If an article erroneously links to Umbric Planes or a user searches for the term, the Umbric Planes page will automatically redirect them to Umbric Plains. To achieve this, create a new page for the redirect term (in this case, 'Umbric Planes') and write:

  • #Redirect [[Umbric Plains]]

Of course there is little point entering anything else as users will probably miss the information.

If you need to access a redirect page, the best way is to search for it. The page it redirects you to will then contain a link near the top saying (in our example) "Redirected from Umbric Planes". Clicking the link will take you to the almost bare redirect page, so it can be edited.

Headings

If you want to stay organized, use headings. Eventually after using three or four headings, you'll see a Table of Contents appear in your page. This will make it easier for visitors to read through your article. Headings, like what you see above this text, are made by using

  • ==Headings==
  • ===Subheadings===
  • ====More Subheadings====

Text Manipulation

  • Italicized text <-----------------> ''Italicized text''
  • Bold text <----------------------> '''Bold text'''
  • Bold and Italicized <--------> '''''Bold and Italicized'''''

Categories

Categories are used to keep articles organized. Creating one is easy, just add

  • [[Category:Nightmares Gone Wild]]

to the end of your article, and voila, your article will be tied to that specific category. Now you can browse to the "Category:Nightmare Gone Wild" and see that your article is added to the list alphabetically. You will also notice that at the end of your article, there will be a box showing that this article belong to the "Category:Nightmares Gone Wild" category.

Adding your article to an already existing category is done the same way.

If you would like to create a link to a category without actually adding the page to that category, for example Category:Foci, simply write it like this:

  • [[:Category:Foci]]

Of course this can be put anywhere on the page.

Collapsible Wiki Tables

Collapsible wiki tables can be used to add heaps of information to an article that is nice to have, but maybe doesn't need to take up space every time you look at the page.

There is an incredibly detailed and varied number of things you can do with Wiki tables, and you can find all the examples of them on the page linked below in links and references. This example will just be a quick and dirty way to make nice little hidden info boxes.

First, you need to add the code to start the table, as follows (note, the first two characters are the most important, and are the curvy bracket { followed by a vertical bar |, together, referred to as a pipe):

  • {| class="wikitable collapsible collapsed" style="width:100%"

Then you need to add a title (header) for the table, which starts with an exclamation mark, for example:

  • ! Old Art Information

Then you add the following characters to separate your header from the body of your table:

  • |- (inserts horizontal line, separating rows)
  • | (starts next cell of the table)

Finally, after the paragraphs you want within the table, close the table with a close pipe:

  • |}

Together, it all looks like this:

Sample
{| class="wikitable collapsible collapsed" style="width:100%"
! Old Art Information
|-
|

<insert heaps of old information about your favorite art, say Vampiric Draw>

|}

And produces this:

Links and References

Please visit http://en.wikipedia.org/wiki/Wikipedia:How_to_edit_a_page to learn more about wiki code. I just listed a few of the commands from this URL that will help you get started. If you feel there should be anything else added to this article, please feel free to add it.