summaryrefslogtreecommitdiff
path: root/includes/pear/Text/Wiki/Render/Creole/List.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pear/Text/Wiki/Render/Creole/List.php')
-rw-r--r--includes/pear/Text/Wiki/Render/Creole/List.php53
1 files changed, 53 insertions, 0 deletions
diff --git a/includes/pear/Text/Wiki/Render/Creole/List.php b/includes/pear/Text/Wiki/Render/Creole/List.php
new file mode 100644
index 0000000..bbb9b76
--- /dev/null
+++ b/includes/pear/Text/Wiki/Render/Creole/List.php
@@ -0,0 +1,53 @@
+<?php
+
+class Text_Wiki_Render_Creole_List extends Text_Wiki_Render {
+
+ /**
+ *
+ * Renders a token into text matching the requested format.
+ *
+ * This rendering method is syntactically and semantically compliant
+ * with XHTML 1.1 in that sub-lists are part of the previous list item.
+ *
+ * @access public
+ *
+ * @param array $options The "options" portion of the token (second
+ * element).
+ *
+ * @return string The text rendered from the token options.
+ *
+ */
+
+ function token($options)
+ {
+ // make nice variables (type, level, count)
+
+ switch ($options['type']) {
+
+ case 'bullet_list_start':
+ case 'number_list_start':
+ return '';
+ break;
+ case 'bullet_list_end':
+ case 'number_list_end':
+ if ($options['level'] == 0) {
+ return "\n";
+ }
+ break;
+ case 'bullet_item_start':
+ $pad = str_pad('', $options['level'], '*');
+ return $pad . ' ';
+ break;
+ case 'number_item_start':
+ $pad = str_pad('', $options['level'], '#');
+ return $pad . ' ';
+ break;
+ case 'bullet_item_end':
+ case 'number_item_end':
+ default:
+ return "\n";
+ break;
+ }
+ }
+}
+?> \ No newline at end of file