Source for file Raw.php
Documentation is available at Raw.php
// $Id: Raw.php,v 1.2 2004/09/25 19:05:13 pmjones Exp $
* This class implements a Text_Wiki rule to find sections of the source
* text that are not to be processed by Text_Wiki. These blocks of "raw"
* text will be rendered as they were found.
* @author Paul M. Jones <pmjones@ciaweb.net>
* The regular expression used to find source text matching this
* Generates a token entry for the matched text. Token options are:
* 'text' => The full matched text.
* @param array &$matches The array of matches from parse().
* @return A delimited token number to be used as a placeholder in
$options = array ('text' => $matches[1 ]);
return $this->wiki->addToken ($this->rule, $options);
Documentation generated on Mon, 11 Mar 2019 14:22:33 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|