summaryrefslogtreecommitdiff
path: root/includes/pear/Text/Wiki/Render/Plain/Anchor.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pear/Text/Wiki/Render/Plain/Anchor.php')
-rw-r--r--includes/pear/Text/Wiki/Render/Plain/Anchor.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/includes/pear/Text/Wiki/Render/Plain/Anchor.php b/includes/pear/Text/Wiki/Render/Plain/Anchor.php
new file mode 100644
index 0000000..f24f467
--- /dev/null
+++ b/includes/pear/Text/Wiki/Render/Plain/Anchor.php
@@ -0,0 +1,23 @@
+<?php
+
+/**
+*
+* This class renders an anchor target name in XHTML.
+*
+* @author Manuel Holtgrewe <purestorm at ggnore dot net>
+*
+* @author Paul M. Jones <pmjones at ciaweb dot net>
+*
+* @package Text_Wiki
+*
+*/
+
+class Text_Wiki_Render_Plain_Anchor extends Text_Wiki_Render {
+
+ function token($options)
+ {
+ return $options['name'];
+ }
+}
+
+?>