Source for file Blockquote.php
Documentation is available at Blockquote.php
class Text_Wiki_Render_Latex_Blockquote extends Text_Wiki_Render {
var $conf = array ('css' => null );
* 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'];
return "\\begin{quote}\n";
return "\\end{quote}\n\n";
Documentation generated on Mon, 11 Mar 2019 13:56:51 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|