Source for file Raw.php
Documentation is available at Raw.php
class Text_Wiki_Render_Creole_Raw extends Text_Wiki_Render {
* Renders a token into text matching the requested format.
* @param array $options The "options" portion of the token (second
* @return string The text rendered from the token options.
$text = $options['text'];
if ($text == '\\') $text = ' ';
if (strlen($text) == 1 ) $text = '\\' . $text;
Documentation generated on Mon, 11 Mar 2019 14:56:56 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|