summaryrefslogtreecommitdiff
path: root/includes/pear/Text/Wiki/Render/Creole/Anchor.php
blob: 59dd668acda8cb4c25b9575690990bf777d98c34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

/**
*
* This class renders an anchor target name in Creole.
*
* @author Manuel Holtgrewe <purestorm at ggnore dot net>
*
* @author Paul M. Jones <pmjones at ciaweb dot net>
*
* @package Text_Wiki
*
*/

class Text_Wiki_Render_Creole_Anchor extends Text_Wiki_Render {

    function token($options)
    {
        return '';
    }
}

?>