X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=extlib%2FMichelf%2FMarkdownExtra.php;fp=extlib%2FMichelf%2FMarkdownExtra.php;h=89822e4c20cc5d97a5aa5b0276ac0a3203dc8448;hb=69e04e5cbdbde77e8c86f0a27b7545521a57b292;hp=0000000000000000000000000000000000000000;hpb=a66973e158ba3b38c468005fed1a3eef94fba42f;p=quix0rs-gnu-social.git diff --git a/extlib/Michelf/MarkdownExtra.php b/extlib/Michelf/MarkdownExtra.php new file mode 100644 index 0000000000..89822e4c20 --- /dev/null +++ b/extlib/Michelf/MarkdownExtra.php @@ -0,0 +1,38 @@ + +# +# Original Markdown +# Copyright (c) 2004-2006 John Gruber +# +# +namespace Michelf; + + +# Just force Michelf/Markdown.php to load. This is needed to load +# the temporary implementation class. See below for details. +\Michelf\Markdown::MARKDOWNLIB_VERSION; + +# +# Markdown Extra Parser Class +# +# Note: Currently the implementation resides in the temporary class +# \Michelf\MarkdownExtra_TmpImpl (in the same file as \Michelf\Markdown). +# This makes it easier to propagate the changes between the three different +# packaging styles of PHP Markdown. Once this issue is resolved, the +# _MarkdownExtra_TmpImpl will disappear and this one will contain the code. +# + +class MarkdownExtra extends \Michelf\_MarkdownExtra_TmpImpl { + + ### Parser Implementation ### + + # Temporarily, the implemenation is in the _MarkdownExtra_TmpImpl class. + # See note above. + +} +