1: <?php
2: /**
3: * Renders emphasized text for a Wiki page.
4: *
5: * Copyright 2013 Horde LLC (http://www.horde.org/)
6: *
7: * See the enclosed file COPYING for license information (GPLv2). If
8: * you did not receive this file, see http://www.horde.org/licenses/gpl
9: *
10: * @category Horde
11: * @package Wicked
12: * @author Jan Schneider <jan@horde.org>
13: * @link http://www.horde.org/apps/wicked
14: * @license http://www.horde.org/licenses/gpl GNU General Public License, version 2
15: */
16:
17: /**
18: * Renders emphasized text for a Wiki page.
19: *
20: * @category Horde
21: * @package Wicked
22: * @author Jan Schneider <jan@horde.org>
23: * @link http://www.horde.org/apps/wicked
24: * @license http://www.horde.org/licenses/gpl GNU General Public License, version 2
25: */
26: class Text_Wiki_Render_Rst_Emphasis extends Text_Wiki_Render
27: {
28: /**
29: * Renders a token into text matching the requested format.
30: *
31: * @param array $options The "options" portion of the token (second
32: * element).
33: *
34: * @return string The text rendered from the token options.
35: */
36: public function token($options)
37: {
38: if ($options['type'] == 'start') {
39: return '*';
40: }
41:
42: if ($options['type'] == 'end') {
43: return '*';
44: }
45: }
46: }
47: