]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - 1.33.2/doc/plugins/contrib/syntax.mdwn
tagging version 1.33.2
[git.ikiwiki.info.git] / 1.33.2 / 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 In the case of file parameter, `syntax` will build a html link for direct download.
20 Example:
22        \[[syntax type="perl" text="""  
23        #!/usr/bin/perl
25        my $a = "World";
26        print "Hello, ${a}\n";
27        """]]
29 or 
31        \[[syntax file="/examples/hello.pl" description="My first perl program"]]
33 This plugin create the following CSS styles:
35 * syntax
36 * synComment
37 * synConstant
38 * syncIdentifier
39 * synPreProc
40 * synType
41 * synSpecial
42 * synUnderlined
43 * synError
44 * synTodo
45 * synTitle
47 It can be downloaded from [here](http://taquiones.net/files/misc/) 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>
49 Any help, comments or critics are welcome at <victor@taquiones.net>.
51 ## version 0.9
53 - Add a force_subpage parameter for link build
54 - Fix a bug in syntax page link
55 - Documented a bug with markdown indented text
56 - Documented the syntax directive
58 ## version 0.7
60 - Version change to GPL
61 - Add *linenumbers* parameter
62 - The *file* parameter should be point to a ikiwiki source page. 
63 - The *description* parameter will be converted on a URL if the *file* parameter exist.
65 I need help for debugging this module. Thanks in advance.