summaryrefslogtreecommitdiff
path: root/includes/pear/Text/Wiki/Render/Creole/Heading.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pear/Text/Wiki/Render/Creole/Heading.php')
-rw-r--r--includes/pear/Text/Wiki/Render/Creole/Heading.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/includes/pear/Text/Wiki/Render/Creole/Heading.php b/includes/pear/Text/Wiki/Render/Creole/Heading.php
deleted file mode 100644
index 94ebf84..0000000
--- a/includes/pear/Text/Wiki/Render/Creole/Heading.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class Text_Wiki_Render_Creole_Heading extends Text_Wiki_Render {
- function token($options)
- {
- if ($options['type'] == 'start') {
- return str_pad('', $options['level'], '=') . ' ';
- }
- else if ($options['type'] == 'end') {
- // next line would add trailing '=' signs
- // return ' ' . str_pad('', $options['level'], '=') . "\n\n";
- return "\n\n";
- }
- }
-}
-?> \ No newline at end of file