includes/wikiengine/Render/Xhtml/Prefilter.php
changeset 1 fe660c52c48f
equal deleted inserted replaced
0:902822492a68 1:fe660c52c48f
       
     1 <?php
       
     2 // vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4:
       
     3 /**
       
     4  * Prefilter rule end renderer for Xhtml
       
     5  *
       
     6  * PHP versions 4 and 5
       
     7  *
       
     8  * @category   Text
       
     9  * @package    Text_Wiki
       
    10  * @author     Paul M. Jones <pmjones@php.net>
       
    11  * @license    http://www.gnu.org/copyleft/lesser.html  LGPL License 2.1
       
    12  * @version    CVS: $Id: Prefilter.php,v 1.7 2005/07/30 08:03:29 toggg Exp $
       
    13  * @link       http://pear.php.net/package/Text_Wiki
       
    14  */
       
    15 
       
    16 /**
       
    17  * This class implements a Text_Wiki_Render_Xhtml to "pre-filter" source text so
       
    18  * that line endings are consistently \n, lines ending in a backslash \
       
    19  * are concatenated with the next line, and tabs are converted to spaces.
       
    20  *
       
    21  * @category   Text
       
    22  * @package    Text_Wiki
       
    23  * @author     Paul M. Jones <pmjones@php.net>
       
    24  * @license    http://www.gnu.org/copyleft/lesser.html  LGPL License 2.1
       
    25  * @version    Release: @package_version@
       
    26  * @link       http://pear.php.net/package/Text_Wiki
       
    27  */
       
    28 class Text_Wiki_Render_Xhtml_Prefilter extends Text_Wiki_Render {
       
    29     function token()
       
    30     {
       
    31         return '';
       
    32     }
       
    33 }
       
    34 ?>