Willcraft Animations Wiki
Register
Advertisement

Welcome[]

This blog will be to help anybody that needs it with editing pages. I will explain templates, wikitext and anything I know about if its asked.
I personaly do everything in the source code, so if you use the visual editor you should probably look up a different guide {{#NewWindowLink:http://community.wikia.com/wiki/Help:VisualEditor%7Chere}}.
Feel free to leave questions in the comments! ^.^

Some quick first-aid help
If you're trying to use some of these and they just don't work how they are supposed too, go through these steps first.

  • Uppercase letters, Make sure you made the right letters uppercase. Wikitext is Uppercase Sensitive!
  • The order, Some code works with < / and >. If you put the / on the wrong spot the code won't end properly.
  • Double usage, some code or templates when used will overrule other code and templates. Most likely you won't run into this one, but its good to keep in mind.

The Basics[]

I assume most of you already know this, but I've got to start somewhere and maybe you'll learn something new. Its also nice to sometimes look at if you're not sure how to do something anymore.
This exact sheet and more detailed explanation you can find {{#NewWindowLink:http://community.wikia.com/wiki/Help:Wikitext%7Chere}}.

Wikitext cheat sheet[]

Description You type You get
Italicise text ''italic'' italic
Bold text '''bold''' bold
Bold and italic '''''bold & italic''''' bold & italic
Internal link
(within a local wiki)
[[Help:Contents]]

[[Help:Contents|Displayed text]]

Help:Contents
Displayed text
Redirect to another page #REDIRECT [[Help:Contents]] redirectltr.png Help:Contents
External link
(to other websites)
[http://www.example.org]

[http://www.example.org displayed text]
http://www.example.org

[1]

displayed text
http://www.example.org

Sign your posts
on talk pages
~~~~ Your username 08:10,

28 March 2024 (UTC)

Insert the current date and time (UTC) ~~~~~ 08:10, 28 March 2024 (UTC)
Insert username link
Will use contents of Custom signature: entry box in Signature section of preferences, if filled in
~~~ Your username
Internal link with jump to section (within a local wiki) [[Help:Links#Types of internal links]] Help:Links#Types of internal links
Link to a category page [[:Category:Help]] Category:Help
Link to another wikia [[w:c:community|Community Central Wiki]] Community Central Wiki}}
Link to a specific page on another wiki. [[w:c:community:Special:Forum|Community Central forums]] Community Central forums}}
External link that opens a new tab {{#NewWindowLink:http://dev.wikia.com/|Wikia Developers Wiki}} Wikia Developers Wiki}}
Display wikitext code as typed <nowiki>[[This is not a link]]</nowiki> [[This is not a link]]
Add a line break This is<br /> broken in two. This is
broken in two.
The following will work only when it is the only text on a line of code
A horizontal line ----
The following work only when used at the start of a line of code
Headings

A Table of Contents will automatically be generated when four headings are added to an article.

==Level 2==
===Level 3===
====Level 4====
=====Level 5=====
======Level 6======

Level 2
Level 3
Level 4
Level 5
Level 6
Bulleted list

*One
*Two
**Two point one
*Three

  • One
  • Two
    • Two point one
  • Three
Numbered list

#One
#Two
##Two point one
#Three

  1. One
  2. Two
    1. Two point one
  3. Three
Bold definition term

Any colons (:) at the end of a line starting with a semi-colon (;) will be ignored.
Use &#58; to show a colon.

; Wikitext : Special text that is converted by a wiki into HTML or some other code.

Wikitext
Special text that is converted by a wiki into HTML or some other code.
Indents

: One
:: Two
::: Three
:::: Four

One
Two
Three
Four
Preformatted text

_Text

Text


Templates[]

Now to start with templates, you all kinds of templates and each Wikia is made with a few default ones. To learn more detailed about templates you can go {{#NewWindowLink:http://community.wikia.com/wiki/Help:Templates%7Chere}}.
You have two parts of an template, the coding and the syntax. Now you don't have to worry about the coding, that is what the person that makes the template will do. All you have to worry about is how to use the syntax.
You can learn how to use an template when you look at the template page, it will explain what the template does and how to use its syntax. I will try to explain some basic template concepts using examples.


First Example[]

Now my first example will be the {{Welcome}} template. You can reconise a template by the {{}} surrounding it. These brackets won't show up after you finish editing the page, you can only see them in edit mode.
Now the Welcome template has this as syntax:

{{subst:welcome|Your user name}}

If there is an | somewhere inbetween the brackets it means there is a field you can/have too fill in. In this case you have to put your username in.
The "subst:" before the template stands for substitude, this will copy the code from template you use to the page you're using it on. Which means that if someone changes the template after you've used it, your version won't change.
The reason you have to use this for the Welcome templates is so you can edit it after you've posted it, and so it won't change if the welcome template is changed.
In other templates I would recommend not substituding them, as it is a lot of code to carry over to the page.


Second Example[]

My second example will be the {{clr}}, {{clrr}} and {{clrl}} templates.
These templates are very similar and you don't have to fill in any fields. They stand for Clear, clear-right and Clear-Left. And they do exactly what their name suggest, they clear an area from text.
Now its very difficult to explain what they exactly clear and how, so I suggest the best way to finding out is to experiment. Just go to an Wiki_Sandbox and start experimenting.


Third Example[]

My third example will be the {{Infobox character}} template. Infoboxes are used the most of all templates on Wikia's and you've probably run into one many times already. In this case its an infobox to put in a short overview of an character.
Now don't worry about filling in the whole syntax for this infobox, its made in such a way that if some fields aren't filled in they just won't display. So if you don't know one of the fields or if its not relevant to the character you can just leave it open.

{{infobox character
 |name          =
 |image         =
 |imagewidth    =
 |imagecaption  =
 |series        =
 |appearance    =
 |role          =
 |personality   =
 |hobbies       =
}}

You can just copy and paste this syntax anywhere you want and fill in the field after each =. Try to put the infobox at the top of the page though, as its an quick overview of the character and it would be the most logical to put it all the way in the beginning.

Advertisement