Tutorial:AdvancedTutorialPage1i

From WikiChem
Jump to: navigation, search
Wiki 3 bell image.jpg

OK, you've now mastered most of the routine parts of MediaWiki. What about using some bells and whistles?

The first of these is the template variable, which is a number or word surrounded by three curly brackets, such as {{{1}}}. With this feature, you can customize your template, by allowing you to input different values for the template to process. Take a look at this example, which has the following code (excluding the category info) on the template page:

[[File:Birthday cake (fun).png|left|50px]]

<span style="color:green">'''{{{Name}}}'''</span> has a birthday on {{{Month}}} {{{Date}}}!

When you use this template on a page, the variables are named explicitly as Name, Month and Date. We can enter these parameters in any order, using the | symbol to separate them, thus:


{{Birthday|Name=Michael Jones|Date=12th|Month=June}} produces

Birthday cake (fun).png

Michael Jones has a birthday on June 12th!



You can also use unnamed parameters, in which case the variables must be entered in the standard order. In these cases, the template contains numerical parser functions {{{1}}}, {{{2}}}, etc.

There are also certain Magic words that provide shortcuts to useful functions or data, such as TOCs, today's date, the page name, etc.

Parser functions provide a more elaborate way to work with template variables, using logic commands such as "If". These can be quite simple, but they can quickly get quite ridiculous in the hands of a real expert - take a look at one of the most widely used templates on Wikipedia, the WPBannerMeta template.

Next page