Wiki editing help
Updated on: 12/2/2008 8:24:38 PM
Most text in the Wiki can be edited in a standard word processing fashion. There are a few special characters that can help you to bring your Wiki pages to life.
-----------------------------------
Italicise Text-----------------------------------
You can mark text in italics by placing '' on each side of the part you want to be italicised.
''Example'' ->
Example-----------------------------------
Bold Text-----------------------------------
You can set text to bold by placing ''' on each side of the part you want to be bold.
'''Example''' ->
Example-----------------------------------
Bold and Italicise Text-----------------------------------
You can set text to bold and italics by useing ''''' on each side of the part you wish to bold/italics.
'''''Example''''' ->
Example-----------------------------------
Headings-----------------------------------
==Heading 1==
===Heading 2===
====Heading 3====
=====Heading 4=====
-----------------------------------
Internal Link-----------------------------------
If you wish to link to another page in this Wiki you can use the double square brackets.
[[Wiki editing help]] ->
Wiki editing help-----------------------------------
External Link-----------------------------------
If you want to link to another page outside of this Wiki you can do that with the square brackets.
[http://www.SLSalesTracker.com] ->
http://www.SLSalesTracker.com-----------------------------------
Image-----------------------------------
You can add images to the Wiki. These images must be preloaded to the Wiki images section.
NOTE: Width, height and align are optional. Valid alignments are left, right and center.<image width=50px height=50px align=Left>SLSTLogoSquare.jpg</image>

-----------------------------------
XML Code Block-----------------------------------
If you wish to include an XML type code block you can do so with the xml tag.
NOTE: If your XML is not valid, your XML section will be empty.<xml>
<RootElement Attribute='value'>
<ChildElement Attribute='value'>ElementText</ChildElement>
</RootElement>
</xml>
<RootElement Attribute='value'>
<ChildElement Attribute='value'>ElementText</ChildElement>
</RootElement>
-----------------------------------
LsL Block-----------------------------------
You can include regular LsL2 code blocks with the LsL tag.
<lsl>
default
{
touch_start(integer total_number)
{
llSay(0, "Hi there.");
}
}
</lsl>
default
{
touch_start(
integer total_number)
{
llSay(0, "Hi there.");
}
}