<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -12,64 +12,62 @@ require_once(DOKU_PLUGIN.'action.php');
 
 class action_plugin_creole extends DokuWiki_Action_Plugin {
 
-  /**
-   * return some info
-   */
-  function getInfo(){
-    return array(
-      'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
-      'email'  =&gt; 'dokuwiki@chimeric.de',
-      'date'   =&gt; '2008-02-12',
-      'name'   =&gt; 'Creole Plugin',
-      'desc'   =&gt; 'Changes the editor toolbar if markup precedence is set to Creole',
-      'url'    =&gt; 'http://wiki.splitbrain.org/plugin:creole',
-    );
-  }
+    /**
+     * return some info
+     */
+    function getInfo() {
+        return array(
+                'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
+                'email'  =&gt; 'dokuwiki@chimeric.de',
+                'date'   =&gt; '2008-02-12',
+                'name'   =&gt; 'Creole Plugin',
+                'desc'   =&gt; 'Changes the editor toolbar if markup precedence is set to Creole',
+                'url'    =&gt; 'http://wiki.splitbrain.org/plugin:creole',
+                );
+    }
+
+    /**
+     * register the eventhandlers
+     */
+    function register(&amp;$contr) {
+        $contr-&gt;register_hook('TOOLBAR_DEFINE',
+                'AFTER',
+                $this,
+                'define_toolbar',
+                array());
+    }
+
+    /**
+     * modifiy the toolbar JS defines
+     *
+     * @author  Esther Brunner  &lt;wikidesign@gmail.com&gt;
+     */
+    function define_toolbar(&amp;$event, $param) {
+        // return false;  
+        if ($this-&gt;getConf('precedence') != 'creole') return false; // leave untouched
 
-  /**
-   * register the eventhandlers
-   */
-  function register(&amp;$contr){
-    $contr-&gt;register_hook('TOOLBAR_DEFINE',
-                          'AFTER',
-                          $this,
-                          'define_toolbar',
-                           array());
-  }
+        $c = count($event-&gt;data);
+        for ($i = 0; $i &lt;= $c; $i++) {
+            if ($event-&gt;data[$i]['type'] == 'format') {
 
-  /**
-   * modifiy the toolbar JS defines
-   *
-   * @author  Esther Brunner  &lt;wikidesign@gmail.com&gt;
-   */
-  function define_toolbar(&amp;$event, $param){
-    // return false;  
-    if ($this-&gt;getConf('precedence') != 'creole') return false; // leave untouched
-        
-    $c = count($event-&gt;data);
-    for ($i = 0; $i &lt;= $c; $i++){
-      if ($event-&gt;data[$i]['type'] == 'format'){
-        
-        // headers
-        if (preg_match(&quot;/h(\d)\.png/&quot;, $event-&gt;data[$i]['icon'], $match)){
-          $markup = substr('======', 0, $match[1]);
-          $event-&gt;data[$i]['open']  = $markup.&quot; &quot;;
-          $event-&gt;data[$i]['close'] = &quot; &quot;.$markup.&quot;\\n&quot;;
-          
-        // ordered lists
-        } elseif ($event-&gt;data[$i]['icon'] == 'ol.png'){
-          $event-&gt;data[$i]['open']  = &quot;# &quot;;
-          
-        // unordered lists
-        } elseif ($event-&gt;data[$i]['icon'] == 'ul.png'){
-          $event-&gt;data[$i]['open']  = &quot;* &quot;;
+                // headers
+                if (preg_match(&quot;/h(\d)\.png/&quot;, $event-&gt;data[$i]['icon'], $match)) {
+                    $markup = substr('======', 0, $match[1]);
+                    $event-&gt;data[$i]['open']  = $markup.&quot; &quot;;
+                    $event-&gt;data[$i]['close'] = &quot; &quot;.$markup.&quot;\\n&quot;;
+
+                    // ordered lists
+                } elseif ($event-&gt;data[$i]['icon'] == 'ol.png') {
+                    $event-&gt;data[$i]['open']  = &quot;# &quot;;
+
+                    // unordered lists
+                } elseif ($event-&gt;data[$i]['icon'] == 'ul.png') {
+                    $event-&gt;data[$i]['open']  = &quot;* &quot;;
+                }
+            }
         }
-      }
+
+        return true;
     }
-    
-    return true;
-  }
-  
 }
-
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:</diff>
      <filename>action.php</filename>
    </modified>
    <modified>
      <diff>@@ -5,86 +5,85 @@
  * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
  * @author     Esther Brunner &lt;wikidesign@gmail.com&gt;
  */
- 
+
 // must be run within Dokuwiki
 if(!defined('DOKU_INC')) die();
 
 if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
 require_once(DOKU_PLUGIN.'syntax.php');
- 
+
 /**
  * All DokuWiki plugins to extend the parser/rendering mechanism
  * need to inherit from this class
  */
 class syntax_plugin_creole_header extends DokuWiki_Syntax_Plugin {
- 
-  function getInfo(){
-    return array(
-      'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
-      'email'  =&gt; 'dokuwiki@chimeric.de',
-      'date'   =&gt; '2008-02-12',
-      'name'   =&gt; 'Creole Plugin, header component',
-      'desc'   =&gt; 'Creole style headers',
-      'url'    =&gt; 'http://wiki.splitbrain.org/plugin:creole',
-    );
-  }
 
-  function getType(){ return 'container'; }
-  function getPType(){ return 'block'; }
-  function getSort(){ return 49; }
-  
-  function getAllowedTypes(){
-    return array('formatting', 'substition', 'disabled', 'protected');
-  }
-  
-  function preConnect(){
-    $this-&gt;Lexer-&gt;addSpecialPattern(
-      '(?m)^[ \t]*=+[^\n]+=*[ \t]*$',
-      'base',
-      'plugin_creole_header'
-    );
-  }
-  
-  function handle($match, $state, $pos, &amp;$handler){
-    global $conf;
-    
-    // get level and title
-    $title = trim($match);
-    if (($this-&gt;getConf('precedence') == 'dokuwiki')
-      &amp;&amp; ($title{strlen($title) - 1} == '=')){ // DokuWiki
-      $level = 7 - strspn($title, '=');
-    } else {                                   // Creole
-      $level = strspn($title, '=');
+    function getInfo() {
+        return array(
+                'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
+                'email'  =&gt; 'dokuwiki@chimeric.de',
+                'date'   =&gt; '2008-02-12',
+                'name'   =&gt; 'Creole Plugin, header component',
+                'desc'   =&gt; 'Creole style headers',
+                'url'    =&gt; 'http://wiki.splitbrain.org/plugin:creole',
+                );
     }
-    if ($level &lt; 1) $level = 1;
-    elseif ($level &gt; 5) $level = 5;
-    $title = trim($title, '=');
-    $title = trim($title);
 
-    if ($handler-&gt;status['section']) $handler-&gt;_addCall('section_close', array(), $pos);
+    function getType() { return 'container'; }
+    function getPType() { return 'block'; }
+    function getSort() { return 49; }
+
+    function getAllowedTypes() {
+        return array('formatting', 'substition', 'disabled', 'protected');
+    }
 
-    if ($level &lt;= $conf['maxseclevel']){
-        $handler-&gt;_addCall('section_edit', array(
-          $handler-&gt;status['section_edit_start'],
-          $pos-1,
-          $handler-&gt;status['section_edit_level'],
-          $handler-&gt;status['section_edit_title']
-        ), $pos);
-        $handler-&gt;status['section_edit_start'] = $pos;
-        $handler-&gt;status['section_edit_level'] = $level;
-        $handler-&gt;status['section_edit_title'] = $title;
+    function preConnect() {
+        $this-&gt;Lexer-&gt;addSpecialPattern(
+                '(?m)^[ \t]*=+[^\n]+=*[ \t]*$',
+                'base',
+                'plugin_creole_header'
+                );
     }
 
-    $handler-&gt;_addCall('header', array($title, $level, $pos), $pos);
+    function handle($match, $state, $pos, &amp;$handler) {
+        global $conf;
+
+        // get level and title
+        $title = trim($match);
+        if (($this-&gt;getConf('precedence') == 'dokuwiki')
+                &amp;&amp; ($title{strlen($title) - 1} == '=')) { // DokuWiki
+            $level = 7 - strspn($title, '=');
+        } else {                                   // Creole
+            $level = strspn($title, '=');
+        }
+        if ($level &lt; 1) $level = 1;
+        elseif ($level &gt; 5) $level = 5;
+        $title = trim($title, '=');
+        $title = trim($title);
+
+        if ($handler-&gt;status['section']) $handler-&gt;_addCall('section_close', array(), $pos);
 
-    $handler-&gt;_addCall('section_open', array($level), $pos);
-    $handler-&gt;status['section'] = true;
-    return true;
-  }
-  
-  function render($mode, &amp;$renderer, $data){
-    return true;
-  }
+        if ($level &lt;= $conf['maxseclevel']) {
+            $handler-&gt;_addCall('section_edit', array(
+                        $handler-&gt;status['section_edit_start'],
+                        $pos-1,
+                        $handler-&gt;status['section_edit_level'],
+                        $handler-&gt;status['section_edit_title']
+                        ), $pos);
+            $handler-&gt;status['section_edit_start'] = $pos;
+            $handler-&gt;status['section_edit_level'] = $level;
+            $handler-&gt;status['section_edit_title'] = $title;
+        }
+
+        $handler-&gt;_addCall('header', array($title, $level, $pos), $pos);
+
+        $handler-&gt;_addCall('section_open', array($level), $pos);
+        $handler-&gt;status['section'] = true;
+        return true;
+    }
+
+    function render($mode, &amp;$renderer, $data) {
+        return true;
+    }
 }
- 
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:</diff>
      <filename>syntax/header.php</filename>
    </modified>
    <modified>
      <diff>@@ -7,53 +7,54 @@
  * @author     Christopher Smith &lt;chris@jalakai.co.uk&gt;
  * @author     Esther Brunner &lt;wikidesign@gmail.com&gt;
  */
- 
+
 // must be run within Dokuwiki
 if(!defined('DOKU_INC')) die();
- 
+
 if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
 require_once(DOKU_PLUGIN.'syntax.php');
- 
+
 /**
  * All DokuWiki plugins to extend the parser/rendering mechanism
  * need to inherit from this class
  */
 class syntax_plugin_creole_linebreak extends DokuWiki_Syntax_Plugin {
- 
-  function getInfo(){
-    return array(
-      'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Christopher Smith',
-      'email'  =&gt; 'dokuwiki@chimeric.de',
-      'date'   =&gt; '2008-02-12',
-      'name'   =&gt; 'Creole Plugin (linebreak component)',
-      'desc'   =&gt; 'Provide a line break for a new line in the raw wiki data',
-      'url'    =&gt; 'http://wiki.splitbrain.org/plugin:creole',
-    );
-  }
-
-  function getType() { return 'substition'; }
-  function getSort() { return 100; }
-  
-  function connectTo($mode) {
-    $this-&gt;Lexer-&gt;addSpecialPattern(
-      '(?&lt;!^|\n)\n(?!\n|&gt;)',
-      $mode,
-      'plugin_creole_linebreak'
-    ); 
-  }
-
-  function handle($match, $state, $pos, &amp;$handler){ 
-
-    if ($match == &quot;\n&quot;) return true;
-    return false;
-  }
-
-  function render($mode, &amp;$renderer, $data){
-  
-    if($mode == 'xhtml'){
-        if ($data) $renderer-&gt;doc .= &quot;&lt;br /&gt;&quot;;
-        return true;
-    }
-    return false;
-  }
+
+	function getInfo() {
+		return array(
+				'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Christopher Smith',
+				'email'  =&gt; 'dokuwiki@chimeric.de',
+				'date'   =&gt; '2008-02-12',
+				'name'   =&gt; 'Creole Plugin (linebreak component)',
+				'desc'   =&gt; 'Provide a line break for a new line in the raw wiki data',
+				'url'    =&gt; 'http://wiki.splitbrain.org/plugin:creole',
+				);
+	}
+
+	function getType() { return 'substition'; }
+	function getSort() { return 100; }
+
+	function connectTo($mode) {
+		$this-&gt;Lexer-&gt;addSpecialPattern(
+				'(?&lt;!^|\n)\n(?!\n|&gt;)',
+				$mode,
+				'plugin_creole_linebreak'
+				); 
+	}
+
+	function handle($match, $state, $pos, &amp;$handler) { 
+
+		if ($match == &quot;\n&quot;) return true;
+		return false;
+	}
+
+	function render($mode, &amp;$renderer, $data) {
+
+		if($mode == 'xhtml') {
+			if ($data) $renderer-&gt;doc .= &quot;&lt;br /&gt;&quot;;
+			return true;
+		}
+		return false;
+	}
 }
+//vim:ts=4:sw=4:et:enc=utf-8:</diff>
      <filename>syntax/linebreak.php</filename>
    </modified>
    <modified>
      <diff>@@ -5,100 +5,99 @@
  * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
  * @author     Esther Brunner &lt;wikidesign@gmail.com&gt;
  */
- 
+
 // must be run within Dokuwiki
 if(!defined('DOKU_INC')) die();
 
 if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
 require_once(DOKU_PLUGIN.'syntax.php');
- 
+
 /**
  * All DokuWiki plugins to extend the parser/rendering mechanism
  * need to inherit from this class
  */
 class syntax_plugin_creole_listblock extends DokuWiki_Syntax_Plugin {
- 
-  function getInfo(){
-    return array(
-      'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
-      'email'  =&gt; 'dokuwiki@chimeric.de',
-      'date'   =&gt; '2008-02-12',
-      'name'   =&gt; 'Creole Plugin, listblock component',
-      'desc'   =&gt; 'Creole style ordered and unorderered lists',
-      'url'    =&gt; 'http://wiki.splitbrain.org/plugin:creole',
-    );
-  }
 
-  function getType(){ return 'container'; }
-  function getPType(){ return 'block'; }
-  function getSort(){ return 9; }
-  
-  function getAllowedTypes(){
-    return array('formatting', 'substition', 'disabled', 'protected');
-  }
-  
-  function connectTo($mode){
-    $this-&gt;Lexer-&gt;addEntryPattern(
-      '\n[ \t]*[\#\*](?!\*)',
-      $mode,
-      'plugin_creole_listblock'
-    );
-    $this-&gt;Lexer-&gt;addPattern(
-      '\n[ \t]*[\#\*\-]+',
-      'plugin_creole_listblock'
-    );
-  }
-  
-  function postConnect(){
-    $this-&gt;Lexer-&gt;addExitPattern(
-      '\n',
-      'plugin_creole_listblock'
-    );
-  }
-  
-  function handle($match, $state, $pos, &amp;$handler){
-    switch ($state){
-      case DOKU_LEXER_ENTER:
-        $ReWriter = &amp; new Doku_Handler_List($handler-&gt;CallWriter);
-        $ReWriter = &amp; new Doku_Handler_Creole_List($handler-&gt;CallWriter);
-        $handler-&gt;CallWriter = &amp; $ReWriter;
-        $handler-&gt;_addCall('list_open', array($match), $pos);
-        break;
-      case DOKU_LEXER_EXIT:
-        $handler-&gt;_addCall('list_close', array(), $pos);
-        $handler-&gt;CallWriter-&gt;process();
-        $ReWriter = &amp; $handler-&gt;CallWriter;
-        $handler-&gt;CallWriter = &amp; $ReWriter-&gt;CallWriter;
-        break;
-      case DOKU_LEXER_MATCHED:
-        $handler-&gt;_addCall('list_item', array($match), $pos);
-        break;
-      case DOKU_LEXER_UNMATCHED:
-        $handler-&gt;_addCall('cdata', array($match), $pos);
-        break;
+    function getInfo() {
+        return array(
+                'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
+                'email'  =&gt; 'dokuwiki@chimeric.de',
+                'date'   =&gt; '2008-02-12',
+                'name'   =&gt; 'Creole Plugin, listblock component',
+                'desc'   =&gt; 'Creole style ordered and unorderered lists',
+                'url'    =&gt; 'http://wiki.splitbrain.org/plugin:creole',
+                );
+    }
+
+    function getType() { return 'container'; }
+    function getPType() { return 'block'; }
+    function getSort() { return 9; }
+
+    function getAllowedTypes() {
+        return array('formatting', 'substition', 'disabled', 'protected');
+    }
+
+    function connectTo($mode) {
+        $this-&gt;Lexer-&gt;addEntryPattern(
+                '\n[ \t]*[\#\*](?!\*)',
+                $mode,
+                'plugin_creole_listblock'
+                );
+        $this-&gt;Lexer-&gt;addPattern(
+                '\n[ \t]*[\#\*\-]+',
+                'plugin_creole_listblock'
+                );
+    }
+
+    function postConnect() {
+        $this-&gt;Lexer-&gt;addExitPattern(
+                '\n',
+                'plugin_creole_listblock'
+                );
+    }
+
+    function handle($match, $state, $pos, &amp;$handler) {
+        switch ($state) {
+            case DOKU_LEXER_ENTER:
+                $ReWriter = &amp; new Doku_Handler_List($handler-&gt;CallWriter);
+                $ReWriter = &amp; new Doku_Handler_Creole_List($handler-&gt;CallWriter);
+                $handler-&gt;CallWriter = &amp; $ReWriter;
+                $handler-&gt;_addCall('list_open', array($match), $pos);
+                break;
+            case DOKU_LEXER_EXIT:
+                $handler-&gt;_addCall('list_close', array(), $pos);
+                $handler-&gt;CallWriter-&gt;process();
+                $ReWriter = &amp; $handler-&gt;CallWriter;
+                $handler-&gt;CallWriter = &amp; $ReWriter-&gt;CallWriter;
+                break;
+            case DOKU_LEXER_MATCHED:
+                $handler-&gt;_addCall('list_item', array($match), $pos);
+                break;
+            case DOKU_LEXER_UNMATCHED:
+                $handler-&gt;_addCall('cdata', array($match), $pos);
+                break;
+        }
+        return true;
+    }
+
+    function render($mode, &amp;$renderer, $data) {
+        return true;
     }
-    return true;
-  }
-  
-  function render($mode, &amp;$renderer, $data){
-    return true;
-  }
 }
 
 /* ----- Creole List Call Writer ----- */
 
 class Doku_Handler_Creole_List extends Doku_Handler_List {
 
-  function interpretSyntax($match, &amp;$type){
-    if (substr($match,-1) == '*') $type = 'u';
-    else $type = 'o';
-    $level = strlen(trim($match));  // Creole
-    if ($level &lt;= 1){
-      $c = count(explode('  ',str_replace(&quot;\t&quot;,'  ',$match)));
-      if ($c &gt; $level) $level = $c; // DokuWiki
+    function interpretSyntax($match, &amp;$type) {
+        if (substr($match,-1) == '*') $type = 'u';
+        else $type = 'o';
+        $level = strlen(trim($match));  // Creole
+        if ($level &lt;= 1) {
+            $c = count(explode('  ',str_replace(&quot;\t&quot;,'  ',$match)));
+            if ($c &gt; $level) $level = $c; // DokuWiki
+        }
+        return $level;
     }
-    return $level;
-  }
 }
- 
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:</diff>
      <filename>syntax/listblock.php</filename>
    </modified>
    <modified>
      <diff>@@ -5,59 +5,58 @@
  * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
  * @author     Esther Brunner &lt;wikidesign@gmail.com&gt;
  */
- 
+
 // must be run within Dokuwiki
 if(!defined('DOKU_INC')) die();
 
 if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
 require_once(DOKU_PLUGIN.'syntax.php');
- 
+
 /**
  * All DokuWiki plugins to extend the parser/rendering mechanism
  * need to inherit from this class
  */
 class syntax_plugin_creole_preblock extends DokuWiki_Syntax_Plugin {
- 
-  function getInfo(){
-    return array(
-      'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
-      'email'  =&gt; 'dokuwiki@chimeric.de',
-      'date'   =&gt; '2008-02-12',
-      'name'   =&gt; 'Creole Plugin, preformatted block component',
-      'desc'   =&gt; 'Creole style preformatted text',
-      'url'    =&gt; 'http://wiki.splitbrain.org/plugin:creole',
-    );
-  }
-
-  function getType(){ return 'protected'; }
-  function getPType(){ return 'block'; }
-  function getSort(){ return 101; }
-  
-  function connectTo($mode){
-    $this-&gt;Lexer-&gt;addEntryPattern(
-      '\n\{\{\{\n(?=.*?\n\}\}\}\n)',
-      $mode,
-      'plugin_creole_preblock'
-    );
-  }
-  
-  function postConnect(){
-    $this-&gt;Lexer-&gt;addExitPattern(
-      '\n\}\}\}\n',
-      'plugin_creole_preblock'
-    );
-  }
-  
-  function handle($match, $state, $pos, &amp;$handler){
-    if ($state == DOKU_LEXER_UNMATCHED){
-      $handler-&gt;_addCall('preformatted', array($match), $pos);
+
+    function getInfo() {
+        return array(
+                'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
+                'email'  =&gt; 'dokuwiki@chimeric.de',
+                'date'   =&gt; '2008-02-12',
+                'name'   =&gt; 'Creole Plugin, preformatted block component',
+                'desc'   =&gt; 'Creole style preformatted text',
+                'url'    =&gt; 'http://wiki.splitbrain.org/plugin:creole',
+                );
+    }
+
+    function getType() { return 'protected'; }
+    function getPType() { return 'block'; }
+    function getSort() { return 101; }
+
+    function connectTo($mode) {
+        $this-&gt;Lexer-&gt;addEntryPattern(
+                '\n\{\{\{\n(?=.*?\n\}\}\}\n)',
+                $mode,
+                'plugin_creole_preblock'
+                );
+    }
+
+    function postConnect() {
+        $this-&gt;Lexer-&gt;addExitPattern(
+                '\n\}\}\}\n',
+                'plugin_creole_preblock'
+                );
+    }
+
+    function handle($match, $state, $pos, &amp;$handler) {
+        if ($state == DOKU_LEXER_UNMATCHED) {
+            $handler-&gt;_addCall('preformatted', array($match), $pos);
+        }
+        return true;
+    }
+
+    function render($mode, &amp;$renderer, $data) {
+        return true;
     }
-    return true;
-  }
-  
-  function render($mode, &amp;$renderer, $data){
-    return true;
-  }
 }
-     
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:</diff>
      <filename>syntax/preblock.php</filename>
    </modified>
    <modified>
      <diff>@@ -5,66 +5,65 @@
  * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
  * @author     Esther Brunner &lt;wikidesign@gmail.com&gt;
  */
- 
+
 // must be run within Dokuwiki
 if(!defined('DOKU_INC')) die();
 
 if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
 require_once(DOKU_PLUGIN.'syntax.php');
- 
+
 /**
  * All DokuWiki plugins to extend the parser/rendering mechanism
  * need to inherit from this class
  */
 class syntax_plugin_creole_preinline extends DokuWiki_Syntax_Plugin {
- 
-  function getInfo(){
-    return array(
-      'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
-      'email'  =&gt; 'dokuwiki@chimeric.de',
-      'date'   =&gt; '2008-02-12',
-      'name'   =&gt; 'Creole Plugin, inline preformatted component',
-      'desc'   =&gt; 'Creole style preformatted text',
-      'url'    =&gt; 'http://wiki.splitbrain.org/plugin:creole',
-    );
-  }
 
-  function getType(){ return 'protected'; }
-  function getSort(){ return 102; }
-  
-  function connectTo($mode){
-    $this-&gt;Lexer-&gt;addEntryPattern(
-      '\{\{\{(?=.*?\}\}\})',
-      $mode,
-      'plugin_creole_preinline'
-    );
-  }
-  
-  function postConnect(){
-    $this-&gt;Lexer-&gt;addExitPattern(
-      '\}\}\}',
-      'plugin_creole_preinline'
-    );
-  }
-  
-  function handle($match, $state, $pos, &amp;$handler){
-    switch ($state){
-      case DOKU_LEXER_ENTER:
-        $handler-&gt;_addCall('monospace_open', array(), $pos);
-        break;
-      case DOKU_LEXER_UNMATCHED:
-        $handler-&gt;_addCall('unformatted', array($match), $pos);
-        break;
-      case DOKU_LEXER_EXIT:
-        $handler-&gt;_addCall('monospace_close', array(), $pos);
-        break;
+    function getInfo() {
+        return array(
+                'author' =&gt; 'Gina H&#228;u&#223;ge, Michael Klier, Esther Brunner',
+                'email'  =&gt; 'dokuwiki@chimeric.de',
+                'date'   =&gt; '2008-02-12',
+                'name'   =&gt; 'Creole Plugin, inline preformatted component',
+                'desc'   =&gt; 'Creole style preformatted text',
+                'url'    =&gt; 'http://wiki.splitbrain.org/plugin:creole',
+                );
+    }
+
+    function getType() { return 'protected'; }
+    function getSort() { return 102; }
+
+    function connectTo($mode) {
+        $this-&gt;Lexer-&gt;addEntryPattern(
+                '\{\{\{(?=.*?\}\}\})',
+                $mode,
+                'plugin_creole_preinline'
+                );
+    }
+
+    function postConnect() {
+        $this-&gt;Lexer-&gt;addExitPattern(
+                '\}\}\}',
+                'plugin_creole_preinline'
+                );
+    }
+
+    function handle($match, $state, $pos, &amp;$handler) {
+        switch ($state) {
+            case DOKU_LEXER_ENTER:
+                $handler-&gt;_addCall('monospace_open', array(), $pos);
+                break;
+            case DOKU_LEXER_UNMATCHED:
+                $handler-&gt;_addCall('unformatted', array($match), $pos);
+                break;
+            case DOKU_LEXER_EXIT:
+                $handler-&gt;_addCall('monospace_close', array(), $pos);
+                break;
+        }
+        return true;
+    }
+
+    function render($mode, &amp;$renderer, $data) {
+        return true;
     }
-    return true;
-  }
-  
-  function render($mode, &amp;$renderer, $data){
-    return true;
-  }
 }
-     
-//Setup VIM: ex: et ts=4 enc=utf-8 :
+//vim:ts=4:sw=4:et:enc=utf-8:</diff>
      <filename>syntax/preinline.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>116e7ece75ea33c9208e9e5cccc0788931d5c0a6</id>
    </parent>
  </parents>
  <author>
    <name>Michael Klier</name>
    <email>chi@chimeric.de</email>
  </author>
  <url>http://github.com/dokufreaks/plugin-creole/commit/3afc7a5504acd212cd76cef7a9dd4ea139ad60cd</url>
  <id>3afc7a5504acd212cd76cef7a9dd4ea139ad60cd</id>
  <committed-date>2008-06-07T13:43:00-07:00</committed-date>
  <authored-date>2008-06-07T13:43:00-07:00</authored-date>
  <message>fixed code style

darcs-hash:20080607204300-23886-de335f85eca78fde25a5782e9aaa7e9e6fba6683.gz</message>
  <tree>cc66854a1caff171aee5e32c6f968b68c9a66798</tree>
  <committer>
    <name>Michael Klier</name>
    <email>chi@chimeric.de</email>
  </committer>
</commit>
