]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - extlib/Michelf/MarkdownExtra.php
neo-quitter unuglification by marcus, merge-request 44
[quix0rs-gnu-social.git] / extlib / Michelf / MarkdownExtra.php
1 <?php
2 #
3 # Markdown Extra  -  A text-to-HTML conversion tool for web writers
4 #
5 # PHP Markdown Extra
6 # Copyright (c) 2004-2014 Michel Fortin  
7 # <http://michelf.com/projects/php-markdown/>
8 #
9 # Original Markdown
10 # Copyright (c) 2004-2006 John Gruber  
11 # <http://daringfireball.net/projects/markdown/>
12 #
13 namespace Michelf;
14
15
16 # Just force Michelf/Markdown.php to load. This is needed to load
17 # the temporary implementation class. See below for details.
18 \Michelf\Markdown::MARKDOWNLIB_VERSION;
19
20 #
21 # Markdown Extra Parser Class
22 #
23 # Note: Currently the implementation resides in the temporary class
24 # \Michelf\MarkdownExtra_TmpImpl (in the same file as \Michelf\Markdown).
25 # This makes it easier to propagate the changes between the three different
26 # packaging styles of PHP Markdown. Once this issue is resolved, the
27 # _MarkdownExtra_TmpImpl will disappear and this one will contain the code.
28 #
29
30 class MarkdownExtra extends \Michelf\_MarkdownExtra_TmpImpl {
31
32         ### Parser Implementation ###
33
34         # Temporarily, the implemenation is in the _MarkdownExtra_TmpImpl class.
35         # See note above.
36
37 }
38