Source for file Revise.php
Documentation is available at Revise.php
class Text_Wiki_Render_Xhtml_Revise 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.
if ($options['type'] == 'del_start') {
$css = $this->formatConf (' class="%s"', 'css_del');
if ($options['type'] == 'del_end') {
if ($options['type'] == 'ins_start') {
$css = $this->formatConf (' class="%s"', 'css_ins');
if ($options['type'] == 'ins_end') {
Documentation generated on Mon, 11 Mar 2019 14:22:33 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|