summaryrefslogtreecommitdiff
path: root/includes/pear/Text/Wiki/Render/Creole/Include.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pear/Text/Wiki/Render/Creole/Include.php')
-rw-r--r--includes/pear/Text/Wiki/Render/Creole/Include.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/includes/pear/Text/Wiki/Render/Creole/Include.php b/includes/pear/Text/Wiki/Render/Creole/Include.php
new file mode 100644
index 0000000..a0d30cf
--- /dev/null
+++ b/includes/pear/Text/Wiki/Render/Creole/Include.php
@@ -0,0 +1,16 @@
+<?php
+
+class Text_Wiki_Render_Creole_Include extends Text_Wiki_Render {
+
+ function token()
+ {
+ if ($options['type'] == 'start') {
+ return "{{";
+ }
+
+ if ($options['type'] == 'end') {
+ return "}}";
+ }
+ }
+}
+?> \ No newline at end of file