includes/wikiengine/Parse/Mediawiki/Tighten.php
changeset 1027 98c052fc3337
parent 1026 f0431eb8161e
child 1028 dde4416dea00
--- a/includes/wikiengine/Parse/Mediawiki/Tighten.php	Sun Jun 21 00:16:21 2009 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,49 +0,0 @@
-<?php
-
-/**
-* 
-* The rule removes all remaining newlines.
-* 
-* @category Text
-* 
-* @package Text_Wiki
-* 
-* @author Paul M. Jones <pmjones@php.net>
-* 
-* @license LGPL
-* 
-* @version $Id: Tighten.php,v 1.3 2005/02/23 17:38:29 pmjones Exp $
-* 
-*/
-
-
-/**
-* 
-* The rule removes all remaining newlines.
-*
-* @category Text
-* 
-* @package Text_Wiki
-* 
-* @author Paul M. Jones <pmjones@php.net>
-* 
-*/
-
-class Text_Wiki_Parse_Tighten extends Text_Wiki_Parse {
-    
-    
-    /**
-    * 
-    * Apply tightening directly to the source text.
-    *
-    * @access public
-    * 
-    */
-    
-    function parse()
-    {
-        $this->wiki->source = str_replace("\n", '',
-            $this->wiki->source);
-    }
-}
-?>
\ No newline at end of file