Difference between revisions of "Wolfire Wiki Editing Standards"

From Wolfire Games Wiki
Jump to: navigation, search
m
(Introduction)
Line 12: Line 12:
 
Content -->
 
Content -->
 
Future location of the Wolfire Wiki Editing Standards
 
Future location of the Wolfire Wiki Editing Standards
 +
[[Category:Tutorials]]
 +
[[Category:Help]]
 +
[[Category:Wolfire]]
 +
 
=Introduction=
 
=Introduction=
  
Please for the love of god add a category to the file you've uploaded or the article you are writing.
+
For starters if you are reading this page it means you want to help with the wiki. Yay for you!
 +
 
 +
Now, the first step is to log in at the top right corner using your SPF login (if you have an underscore in your handle/alias/name you might have some trouble). Only after logging in can you then begin to contribute to the wiki.
 +
 
 +
Editing a wiki may seem like a daunting task if you don't know that much about modding, code or wikis, but it really only requires common sense to edit a wiki. No knowledge of code is needed. There are a few basic formatting markers but those are easy to pick up. It's more important to know how to communicate through your words than to code.
 +
 
 +
Remember the more you help, the easier it becomes for the next person to contribute and learn. Just please, for the love of god, add a category to the file you will upload or the article you will write. You do that by adding this to the BEGINNING of your page:<pre>[[Category:what ever you want]]</pre>
 +
 
 +
Just remember that there are many categories already available, and typos will add your thing into another category. So double check and if you don't see any category that fits create your own.
  
 
==Editing==
 
==Editing==
Line 81: Line 93:
  
 
You can do that by either clicking "'''Edit'''"/"'''Edit this page'''" or "'''Source'''"/"'''View source'''".
 
You can do that by either clicking "'''Edit'''"/"'''Edit this page'''" or "'''Source'''"/"'''View source'''".
 
  
 
===Useful Examples===
 
===Useful Examples===
Line 87: Line 98:
  
 
*[http://en.wikipedia.org/wiki/Main_Page Wikipedia] The Behemoth that started it all. Examine their ''extensive'' code at your own risk.
 
*[http://en.wikipedia.org/wiki/Main_Page Wikipedia] The Behemoth that started it all. Examine their ''extensive'' code at your own risk.
 
 
*[http://www.wikia.com/wiki/Wikia Wikia] Not one wiki, but a vast collections of wikis hosted in one location.
 
*[http://www.wikia.com/wiki/Wikia Wikia] Not one wiki, but a vast collections of wikis hosted in one location.
 
*A variety of cool Wikia Wikis:
 
*A variety of cool Wikia Wikis:
Line 96: Line 106:
 
**[http://starwars.wikia.com/wiki/Main_Page Wookie Wiki]
 
**[http://starwars.wikia.com/wiki/Main_Page Wookie Wiki]
 
**[http://lyrics.wikia.com/Main_Page Lyrics Wiki]
 
**[http://lyrics.wikia.com/Main_Page Lyrics Wiki]
 
[[Category:Help]]
 
[[Category:Wolfire]]
 

Revision as of 05:52, 16 June 2011

Future location of the Wolfire Wiki Editing Standards

Introduction

For starters if you are reading this page it means you want to help with the wiki. Yay for you!

Now, the first step is to log in at the top right corner using your SPF login (if you have an underscore in your handle/alias/name you might have some trouble). Only after logging in can you then begin to contribute to the wiki.

Editing a wiki may seem like a daunting task if you don't know that much about modding, code or wikis, but it really only requires common sense to edit a wiki. No knowledge of code is needed. There are a few basic formatting markers but those are easy to pick up. It's more important to know how to communicate through your words than to code.

Remember the more you help, the easier it becomes for the next person to contribute and learn. Just please, for the love of god, add a category to the file you will upload or the article you will write. You do that by adding this to the BEGINNING of your page:
[[Category:what ever you want]]

Just remember that there are many categories already available, and typos will add your thing into another category. So double check and if you don't see any category that fits create your own.

Editing

Here is the format that all code should be in:

<!--

PRIVATE // Only displayed on this page, not transcluded on pages that use this template
--><noinclude><!--
Categories --> <!--
Constants --> <!--
Content --> <!--
--></noinclude><!--

INCLUDED // Not displayed on this page, only transcluded on pages that use this template
--><includeonly><!--
Categories --> <!--
Constants --> <!--
Content --> <!--
--></includeonly>

PUBLIC // Displayed on this page, and transcluded on pages that use this template
Categories --> <!--
Constants--> <!--
Content -->

For example, a typical template has this code:

<!--

PRIVATE
--><noinclude><!--
Categories --><!--
--></noinclude><!--
Categories -->{{CT|Templates}}<!--
Content -->
This is an example template
<!--
--></noinclude><!--

INCLUDED
--><includeonly><!--
Content -->THIS IS WHERE THE TEMPLATE STUFF GOES<!--
--></includeonly>

PUBLIC
-none-
-->


Templates

This Wiki makes extensive use of templates. Templates allow you to re-use Wiki code and allow for editing of many pages simultaneously.

This section will contain an comprehensive tutorial on templates, in the meantime

Learning by Example

Any wiki using the standard wiki engine will allow you to see its source, and so it's easy to learn how to create an awesome wiki: all you have to do is look at their code

You can do that by either clicking "Edit"/"Edit this page" or "Source"/"View source".

Useful Examples

Note: These examples were not picked for any reason apart from being educational resources.