equal
deleted
inserted
replaced
|
1 <?php |
|
2 // vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: |
|
3 /** |
|
4 * Freelink rule end renderer for Xhtml |
|
5 * |
|
6 * PHP versions 4 and 5 |
|
7 * |
|
8 * @category Text |
|
9 * @package Text_Wiki |
|
10 * @author Paul M. Jones <pmjones@php.net> |
|
11 * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 |
|
12 * @version CVS: $Id: Freelink.php,v 1.7 2005/07/30 08:03:28 toggg Exp $ |
|
13 * @link http://pear.php.net/package/Text_Wiki |
|
14 */ |
|
15 |
|
16 /** |
|
17 * The wikilink render class. |
|
18 */ |
|
19 require_once 'Text/Wiki/Render/Xhtml/Wikilink.php'; |
|
20 |
|
21 /** |
|
22 * This class renders free links in XHTML. |
|
23 * |
|
24 * @category Text |
|
25 * @package Text_Wiki |
|
26 * @author Paul M. Jones <pmjones@php.net> |
|
27 * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 |
|
28 * @version Release: @package_version@ |
|
29 * @link http://pear.php.net/package/Text_Wiki |
|
30 */ |
|
31 class Text_Wiki_Render_Xhtml_Freelink extends Text_Wiki_Render_Xhtml_Wikilink { |
|
32 // renders identically to wikilinks, only the parsing is different :-) |
|
33 } |
|
34 |
|
35 ?> |