summaryrefslogtreecommitdiff
path: root/includes/pear/Text/Wiki/Render/Creole/Blockquote.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pear/Text/Wiki/Render/Creole/Blockquote.php')
-rw-r--r--includes/pear/Text/Wiki/Render/Creole/Blockquote.php47
1 files changed, 0 insertions, 47 deletions
diff --git a/includes/pear/Text/Wiki/Render/Creole/Blockquote.php b/includes/pear/Text/Wiki/Render/Creole/Blockquote.php
deleted file mode 100644
index f6a3f06..0000000
--- a/includes/pear/Text/Wiki/Render/Creole/Blockquote.php
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-
-class Text_Wiki_Render_Creole_Blockquote extends Text_Wiki_Render {
-
- var $css_stack = array();
-
- /**
- *
- * Renders a token into text matching the requested format.
- *
- * @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)
- {
- // starting
- if ($options['type'] == 'start') {
- if (empty($options['css'])) $options['css'] = '';
- array_push($this->css_stack, $options['css']);
- $this->wiki->registerRenderCallback(array(&$this, 'renderInsideText'));
- return '';
- }
- // ending
- if ($options['type'] == 'end') {
- $this->wiki->popRenderCallback();
- return '';
- }
- }
-
- function renderInsideText($text) {
- $text = trim($text);
- if (array_pop($this->css_stack) == 'remark') {
- $text = preg_replace('/(^|\n)([\>\:]*) */', '\1:\2 ', $text);
- }
- else {
- $text = preg_replace('/(^|\n)([\>\:]*) */', '\1>\2 ', $text);
- }
- return $text . "\n\n";
- }
-}
-?> \ No newline at end of file