]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/plugins/contrib/syntax.mdwn
releasing version 1.31
[git.ikiwiki.info.git] / doc / plugins / contrib / syntax.mdwn
1 [[template id=plugin name=syntax author="[[VictorMoral]]"]]
2 [[tag type/chrome type/slow]]
3 [[meta title="syntax (third-party plugin)"]]
6 `syntax` is a plugin that add support to ikiwiki for syntax highlighting through the *vim* editor and its perl interface [[cpan Text::VimColor]], so it depends on a vim functional installation.
8 The plugin inserts a fragment of HTML with special marks from a file or a string text. It accepts the following parameters:
10 * **type** (optional): this is the file type for vim syntax highlighthing. It can be omitted if the param *file* exists.
11 * **file**: Path to the source file. It must exist on every rebuild of the wiki.
12 * **text**: Text string with the source.
13 * **description** (optional): little description about the content.
14 * **linenumbers** (optional): enable the line numering of the source page. A value greater than zero is the first line number.
16 The params *file* and *text* are mutually exclusive.
18 Example:
20        \[[syntax type="perl" text="""  
21        #!/usr/bin/perl
23        my $a = "World";
24        print "Hello, ${a}\n";
25        """]]
27 or 
29        \[[syntax file="/examples/hello.pl" description="My first perl program"]]
31 This plugin create the following CSS styles:
33 * syntax
34 * synComment
35 * synConstant
36 * syncIdentifier
37 * synPreProc
38 * synType
39 * synSpecial
40 * synUnderlined
41 * synError
42 * synTodo
43 * synTitle
45 It can be downloaded from [here](http://taquiones.net/files/misc/IkiWiki-Plugin-syntax-0.7.tar.gz) or through my personal debian repository at <http://taquiones.net/files/debian/>. There is a page with examples: <http://taquiones.net/software/syntax-examples.html>
47 Any help, comments or critics are welcome at <victor@taquiones.net>.
49 ## version 0.7
51 - Version change to GPL
52 - Add *linenumbers* parameter
53 - The *file* parameter should be point to a ikiwiki source page. 
54 - The *description* parameter will be converted on a URL if the *file* parameter exist.
56 I need help for debugging this module. Thanks in advance.