includes/wikiengine/Render/Plain/Prefilter.php
author Dan
Sun, 21 Jun 2009 00:16:21 -0400
changeset 1026 f0431eb8161e
parent 1010 12e76b1acb4e
permissions -rw-r--r--
AJAX login: fixed improper run of login_submit_early; fixed failure to redirect if main_page_members == current page

<?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 '';
  }
}