Source for file Horiz.php
Documentation is available at Horiz.php
// $Id: Horiz.php,v 1.2 2004/09/25 19:05:13 pmjones Exp $
* This class implements a Text_Wiki_Parse to find source text marked to
* be a horizontal rule, as defined by four dashed on their own line.
* @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 = '/^([-]{4,})$/m';
* Generates a replacement token for the matched text.
* @param array &$matches The array of matches from parse().
* @return string A token marking the horizontal rule.
return $this->wiki->addToken ($this->rule);
Documentation generated on Mon, 11 Mar 2019 14:22:32 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|