1: <?php
2: /**
3: * Renders Wiki pages to restructured text
4: * (http://docutils.sourceforge.net/rst.html).
5: *
6: * Copyright 2011-2012 Horde LLC (http://www.horde.org/)
7: *
8: * See the enclosed file COPYING for license information (GPLv2). If
9: * you did not receive this file, see
10: * http://www.horde.org/licenses/gpl
11: *
12: * PHP version 5
13: *
14: * @category Horde
15: * @package Wicked
16: * @author Gunnar Wrobel <wrobel@pardus.de>
17: * @link http://www.horde.org/apps/wicked
18: * @license http://www.horde.org/licenses/gpl GNU General Public License, version 2
19: */
20:
21: /**
22: * Renders Wiki pages to restructured text
23: * (http://docutils.sourceforge.net/rst.html).
24: *
25: * @category Horde
26: * @package Wicked
27: * @author Gunnar Wrobel <wrobel@pardus.de>
28: * @link http://www.horde.org/apps/wicked
29: * @license http://www.horde.org/licenses/gpl GNU General Public License, version 2
30: */
31: class Text_Wiki_Render_Rst extends Text_Wiki_Render
32: {
33: public function pre()
34: {
35: return;
36: }
37:
38: public function post()
39: {
40: return;
41: }
42: }
43: