diff options
Diffstat (limited to 'includes/pear/Text/Wiki/Render/Creole/Anchor.php')
| -rw-r--r-- | includes/pear/Text/Wiki/Render/Creole/Anchor.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/includes/pear/Text/Wiki/Render/Creole/Anchor.php b/includes/pear/Text/Wiki/Render/Creole/Anchor.php new file mode 100644 index 0000000..59dd668 --- /dev/null +++ b/includes/pear/Text/Wiki/Render/Creole/Anchor.php @@ -0,0 +1,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 ''; + } +} + +?>
\ No newline at end of file |
