LSL Parser

Description

The LSL parser allows you to have LSL code rendered nicely inside Moin's code blocks.

Download & Release Notes

Download

Release Version

Moin Version

Release Notes

parser/lsl.py

1.0

1.5

ParserMarket/Lsl/ReleaseNotes

Installation

For general installation instructions, see ParserMarket/InstallingParsers. This parser requires no special dependencies, such as outside Python libraries.

Usage

To use this parser, simply put #!lsl after the beginning of the code block.

Example

{{{#!lsl
default
{
  state_entry()
  {
    llSay(0, "Hello, Avatar!");
  }
   
  touch(integer total_number)
  {
    llSay(0, "Touched.");
  }
}

}}}

This parser is copyrighted by ThiloPfennig

License

This parser is released under the terms of the GNU GPL.

Discussion

MoinMoin: ParserMarket/Lsl (last edited 2008-01-28 18:08:38 by FedericoLorenzi)