includes/wikiengine/Render/Plain/Prefilter.php
changeset 1027 98c052fc3337
parent 1026 f0431eb8161e
child 1028 dde4416dea00
equal deleted inserted replaced
1026:f0431eb8161e 1027:98c052fc3337
     1 <?php
       
     2 
       
     3 /*
       
     4  * Enano project note: this skeleton class was rewritten due to a licensing issue.
       
     5  */
       
     6 
       
     7 /**
       
     8 * 
       
     9 * This class implements a Text_Wiki_Render_Xhtml to "pre-filter" source text so
       
    10 * that line endings are consistently \n, lines ending in a backslash \
       
    11 * are concatenated with the next line, and tabs are converted to spaces.
       
    12 *
       
    13 * @author Paul M. Jones <pmjones@php.net>
       
    14 *
       
    15 * @package Text_Wiki
       
    16 *
       
    17 */
       
    18 
       
    19 class Text_Wiki_Render_Plain_Prefilter  extends Text_Wiki_Render
       
    20 {
       
    21   function token()
       
    22   {
       
    23     return '';
       
    24   }
       
    25 }