* * @author Paul M. Jones * * @package Text_Wiki * */ class Text_Wiki_Render_Xhtml_Anchor extends Text_Wiki_Render { var $conf = array( 'css' => null ); function token($options) { extract($options); // $type, $name if ($type == 'start') { $css = $this->formatConf(' class="%s"', 'css'); $format = ""; return sprintf($format ,$name); } if ($type == 'end') { return ''; } } } ?>