summaryrefslogtreecommitdiff
path: root/includes/pear/Text/Wiki/Render/Latex/Bold.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pear/Text/Wiki/Render/Latex/Bold.php')
-rw-r--r--includes/pear/Text/Wiki/Render/Latex/Bold.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/includes/pear/Text/Wiki/Render/Latex/Bold.php b/includes/pear/Text/Wiki/Render/Latex/Bold.php
deleted file mode 100644
index 16427a9..0000000
--- a/includes/pear/Text/Wiki/Render/Latex/Bold.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-class Text_Wiki_Render_Latex_Bold extends Text_Wiki_Render {
-
- /**
- *
- * 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)
- {
- if ($options['type'] == 'start') {
- return '\textbf{';
- }
-
- if ($options['type'] == 'end') {
- return '}';
- }
- }
-}
-?>