diff -r 902822492a68 -r fe660c52c48f includes/wikiengine/Parse/Default/Tighten.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/includes/wikiengine/Parse/Default/Tighten.php Wed Jun 13 16:07:17 2007 -0400 @@ -0,0 +1,49 @@ + +* +* @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 +* +*/ + +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