includes/wikiengine/Render/Plain/Prefilter.php
author Dan
Fri, 29 May 2009 14:03:05 -0400
changeset 1010 12e76b1acb4e
parent 1 fe660c52c48f
permissions -rw-r--r--
Clarified some licensing issues from the Fedora project's preliminary review.

<?php

/*
 * Enano project note: this skeleton class was rewritten due to a licensing issue.
 */

/**
* 
* This class implements a Text_Wiki_Render_Xhtml to "pre-filter" source text so
* that line endings are consistently \n, lines ending in a backslash \
* are concatenated with the next line, and tabs are converted to spaces.
*
* @author Paul M. Jones <pmjones@php.net>
*
* @package Text_Wiki
*
*/

class Text_Wiki_Render_Plain_Prefilter  extends Text_Wiki_Render
{
  function token()
  {
    return '';
  }
}