1
+ − 1
<?php
+ − 2
// vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4:
+ − 3
/**
+ − 4
* Parse structured wiki text and render into arbitrary formats such as XHTML.
+ − 5
*
+ − 6
* PHP versions 4 and 5
+ − 7
*
+ − 8
* @category Text
+ − 9
* @package Text_Wiki
+ − 10
* @author Justin Patrin <justinpatrin@php.net>
+ − 11
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
+ − 12
* @version CVS: $Id: Default.php,v 1.1 2006/03/01 16:58:17 justinpatrin Exp $
+ − 13
* @link http://pear.php.net/package/Text_Wiki
+ − 14
*/
+ − 15
+ − 16
require_once('Text/Wiki.php');
+ − 17
+ − 18
/**
+ − 19
* This is the parser for the Default ruleset. For now, this simply extends Text_Wiki.
+ − 20
*
+ − 21
* @category Text
+ − 22
* @package Text_Wiki
+ − 23
* @version Release: @package_version@
+ − 24
* @author Justin Patrin <justinpatrin@php.net>
+ − 25
*/
+ − 26
class Text_Wiki_Default extends Text_Wiki {
+ − 27
}