Source for file Newline.php
Documentation is available at Newline.php
// $Id: Newline.php,v 1.2 2004/09/25 19:05:13 pmjones Exp $
* This class implements a Text_Wiki_Parse to mark implied line breaks in the
* source text, usually a single carriage return in the middle of a paragraph
* @author Paul M. Jones <pmjones@ciaweb.net>
* The regular expression used to parse the source text and find
* matches conforming to this rule. Used by the parse() method.
var $regex = '/([^\n])\n([^\n])/m';
* Generates a replacement token for the matched text.
* @param array &$matches The array of matches from parse().
* @return string A delimited token to be used as a placeholder in
Documentation generated on Mon, 11 Mar 2019 14:22:32 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|