More small fixes to the Markdown unit test
[isso.git] / Markdown.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Blue Static ISSO Framework
5 || # Copyright ©2002-[#]year[#] Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 /**
23 * Markdown
24 *
25 * This class is a PHP implementation of John Gruber's Markdown text processing
26 * system. It is not a port of his Perl version, but rather a creation based
27 * on the rules outlined here: http://daringfireball.net/projects/markdown/.
28 *
29 * @author Blue Static
30 * @copyright Copyright (c)2002 - [#]year[#], Blue Static
31 * @version $Revision$
32 * @package ISSO
33 *
34 */
35 class BSMarkdown
36 {
37 // ###################################################################
38 /**
39 * Quick parsing function that uses the system defaults for parsing.
40 *
41 * @param string Original text
42 *
43 * @return string HTML output
44 */
45 public static function Parse($text)
46 {
47
48 }
49 }
50
51 /*=====================================================================*\
52 || ###################################################################
53 || # $HeadURL$
54 || # $Id$
55 || ###################################################################
56 \*=====================================================================*/
57 ?>