SourceHighlightPlugin
Highlight and format code fragments using GNU source-highlight
Introduction
This plugin allows you to have code fragments automatically formatted and highlighted using the
GNU source-highlight package.
Syntax Rules
- Just paste the code between %CODE{"syntax"}% and %ENDCODE%. The following indicates the syntax used for the different languages:
Language |
Key |
Syntax |
C++ |
cpp |
%CODE{"cpp"}% ... %ENDCODE% |
C |
cpp |
%CODE{"cpp"}% ... %ENDCODE% |
Flex |
flex |
%CODE{"flex"}% ... %ENDCODE% |
Java |
java |
%CODE{"java"}% ... %ENDCODE% |
Perl |
perl |
%CODE{"perl"}% ... %ENDCODE% |
PHP3 |
php3 |
%CODE{"php3"}% ... %ENDCODE% |
Prolog |
prolog |
%CODE{"prolog"}% ... %ENDCODE% |
Python |
python |
%CODE{"python"}% ... %ENDCODE% |
You can also define a default language and use the shortcut:
%CODE%
...
%ENDCODE%
Example
%CODE{"cpp"}%
void foo() {
print("Do stuff.\n");
}
%ENDCODE%
SourceHighlightPlugin Global Settings
Plugin settings are stored as preferences variables. To reference a plugin setting write
%<plugin>_<setting>%
, i.e.
%SOURCEHIGHLIGHTPLUGIN_DEFAULTLANGUAGE%
- One line description, is shown in the TextFormattingRules topic:
- Set SHORTDESCRIPTION = Highlight and format code fragments using GNU source-highlight
- Set DEBUG = 0
- Full path to GNU source-highlight binary (REQUIRED)
- Set BINARY = /usr/bin/source-highlight
- Language to use when none specified (optional); choose from one of the Key values in the table above
- Set DEFAULTLANGUAGE = cpp
- CSS class to use for the
div
tag surrounding the HTML output; if undefined we use codefragment
Plugin Installation Instructions
Note: You do not need to install anything on the browser to use this plugin. The following instructions are for the administrator who installs the plugin on the server where TWiki is running.
- Install the GNU source-highlight package and note its location
- Open /usr/local/shard/source-highlight/html.outlang. Eliminate all <tt> </tt>s. This avoids a blank line at the beginning of the code.
- Download the ZIP file from the Plugin web (see below)
- Unzip
SourceHighlightPlugin.zip
in your twiki installation directory. Content: File: | Description: |
data/TWiki/SourceHighlightPlugin.txt | Plugin topic |
lib/TWiki/Plugins/SourceHighlightPlugin.pm | Plugin Perl module |
- Visit
configure
in your TWiki installation, and enable the plugin in the {Plugins} section.
- To get a smart-looking box around the code fragment, something like the following is needed in the skin's stylesheet. Note that you may need to change the class name if you modify the FORMATCLASS configuration variable above.
.codefragment {
background : #FFFFCC;
border : 1px solid #CCCCCC;
margin-left : 2em;
margin-right : 2em;
padding : 4px;
}
- Test if the installation was successful:
package com.foo.stuff;
import java.util.ArrayList;
import java.util.List;
public class Thingy
{
private List myList;
public Thingy()
{
myList = new ArrayList();
}
/**
* @param count This is the thingy you want.
*/
public String getThingy( int count )
{
return (String)myList.get( count );
}
}
Plugin Info
Related Topics: TWikiPreferences,
TWikiPlugins