Source for file Blockquote.php
Documentation is available at Blockquote.php
class Text_Wiki_Render_Xhtml_Blockquote 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.
$type = $options['type'];
$level = $options['level'];
// set up indenting so that the results look nice; we do this
// in two steps to avoid str_pad mathematics. ;-)
$css = $this->formatConf (' class="%s"', 'css');
return " $pad<blockquote$css>";
return $pad . "</blockquote>\n";
Documentation generated on Mon, 11 Mar 2019 14:22:30 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|