]> sipb.mit.edu Git - ikiwiki.git/blob - doc/plugins/contrib/syntax.mdwn
web commit by VictorMoral
[ikiwiki.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)"]]
4
5
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.
7
8 The plugin inserts a fragment of HTML with special marks from a file or a string text. It accepts the following parameters:
9
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.
15
16 The params *file* and *text* are mutually exclusive.
17
18 Example:
19
20        \[[syntax type="perl" text="""  
21        #!/usr/bin/perl
22
23        my $a = "World";
24        print "Hello, ${a}\n";
25        """]]
26
27 or 
28
29        \[[syntax file="/examples/hello.pl" description="My first perl program"]]
30
31 This plugin create the following CSS styles:
32
33 * syntax
34 * synComment
35 * synConstant
36 * syncIdentifier
37 * synPreProc
38 * synType
39 * synSpecial
40 * synUnderlined
41 * synError
42 * synTodo
43 * synTitle
44
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>
46
47 Any help, comments or critics are welcome at <victor@taquiones.net>.
48
49 ## version 0.7
50
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.
55
56 I need help for debugging this module. Thanks in advance.