Wiki Tips
From Virtools Wiki
Contents |
Typing
- If you don't want the wiki to interpret what you write : <nowiki>[[Category:People]]</nowiki>.
Categories
- To assign a category to an article :
[[Category:CategoryName]]
. If the category doesn't exist it will automatically be created. You can assign more than one category. - To create a sub category, go to the page of the subcategory, and add
[[Category:ParentCategoryName]]
- Page addresses are case sensitive. Pay attention when creating an internal link
Source Code
To enter code, you can use <xxx> ... </xxx>.
Example :
<perl>foreach(@myarr){print $_;}</perl>
<java>public class foo{ /* .... */ }</java>
<php>echo "Happy wiki !";</php>
<cpp>
// comment
CfgDocument::Factory::Create(vkAsset* iAsset)
{
// ...
tm.BeginRegisteringAsset(vkGetMainAsset(ctx));
CfgDocumentData::RegisterType(tm);
tm.EndRegisteringAsset();
// ...
}
</cpp>
Result :
foreach(@myarr){print $_;}
public class foo{ /* .... */ }
echo "Happy wiki !";
// comment CfgDocument::Factory::Create(vkAsset* iAsset) { // ... tm.BeginRegisteringAsset(vkGetMainAsset(ctx)); CfgDocumentData::RegisterType(tm); tm.EndRegisteringAsset(); // ... }
Supported Languages
|
|
|
|
|
|
Signature
- You can sign with your name by writing : ~~~
Result : Frede
To put your name and the date : ~~~~ Result : Frede 04:54, 15 November 2006 (EST)
Links
- You can link to a section inside an article :
== section1 == blabla == section2 == go back to [[#section1]]
- A link to an external url :
[http://www.virtools.com Virtools.com]
Images & Files
- First, upload the file through this form : Special:Upload
- Then, use the following code in your page :
[[Image:picture.png]] to insert an image. [[:Image:picture.png]] to make a link to a description of the file. [[Media:picture.png]] to make a link for downloading the file.
Image:Logovirtools.jpg - make a link to a description of the file.
Media:Logovirtools.jpg - make a link for downloading the file.
- For more information : http://meta.wikimedia.org/wiki/Help:Images_and_other_uploaded_files
- Types of files supported : 'png', 'gif', 'jpg', 'jpeg', 'zip', 'nmo', 'vmo', 'cmo', 'mpg', 'mpeg', 'avi', 'wmv', 'mov'
- Max size : 5 Mbytes
- See all files : Special:Imagelist
