Help:Contents
From Online Free Script Library
Basic Wiki syntax
| Description | You type | You get |
| Applies anywhere | ||
| Italic Writing |
''italic'' |
italic |
| Bold text |
'''bold''' |
bold |
| Bold and italic |
'''''bold & italic''''' |
bold & italic |
| Internal link (within the wiki) |
[[name of page]] | |
| Redirect to another page |
#redirect [[Target page]] |
1. redirect Target page |
| External link (to other websites) |
[http://www.example.com] | |
|
Sign your posts |
~~~~ |
Username 05:22, |
| Don't interpret text |
<!--an embedded comment--> |
|
| Applies only at the beginning of the line | ||
| Headings of different sizes |
==level 1== |
Headings of different levels. |
| Horizontal rule |
---- |
|
| Bulleted list |
* list item a |
|
| Numbered list |
# first list item |
|
| Mixture of bulleted and numbered lists |
* list item X |
|
| Definition |
;Technical Term |
|
| Indentation |
: italicized text (indented) |
|
| Preformatted text (boxed text) |
add a space at the beginning of the line to create preformatted text in a box |
add a space at the beginning of the line |
| Thumbnail image |
[[Image:Wiki.png|thumb|Caption text]] | |
LSL Script Indentation
Use <pre> before the script & </lpre> after the script
default
{
state_entry()
{
llSay(0, "Hello, Avatar!");
}
touch_start(integer total_number)
{
llSay(0, "Touched: "+(string)total_number);
}
}
