Readme
------

This is a simple filter module. It handles <code></code> and <?php ?> tags so
that users can post code without having to worry about escaping with &lt; and
&gt;

Syntax Highlighting
-------------------

To enable syntax highlighting you must download GeSHi
(http://qbnz.com/highlighter/) and extract it somewhere the filter can
access it.  Then go to admin -> settings -> codefilter and configure the
location, default language and enable syntax highlighting.

There are two options that you can use to control syntax highlighting in
the <code> tag itself like html arguments.
 
 highlight [true|false] Turns the highlighting on or off for the current
                        <code> ... </code>

 language <language>    This must be a valid language that GeSHi
                        supports

Example
-------

<code highlight="true" language="javascript">
...
</code>

Updates
-------

Aug 6th, 2005 - vfilby@gmail.com
 - added generic syntax highlighting via GeSHi
