*
* @package Text_Wiki
*
*/
class Text_Wiki_Render_Latex_Anchor extends Text_Wiki_Render {
function token($options)
{
extract($options); // $type, $name
if ($type == 'start') {
//return sprintf('',$name);
return '';
}
if ($type == 'end') {
//return '';
return '';
}
}
}
?>