diff options
Diffstat (limited to 'plugins/format.markdown.php')
| -rw-r--r-- | plugins/format.markdown.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/format.markdown.php b/plugins/format.markdown.php index 8cf88e2..15efce1 100644 --- a/plugins/format.markdown.php +++ b/plugins/format.markdown.php @@ -1,6 +1,6 @@ <?php /** - * @version $Revision: 1.8 $ + * @version $Revision: 1.9 $ * @package liberty * @subpackage plugins_format */ @@ -184,7 +184,11 @@ function smarty_modifier_markdown($text) { if (strcasecmp(substr(__FILE__, -16), "classTextile.php") == 0) { # Try to include PHP SmartyPants. Should be in the same directory. @include_once 'smartypants.php'; - # Fake Textile class. It calls Markdown instead. + /** + * Fake Textile class. It calls Markdown instead. + * @package liberty + * @subpackage plugins_format + */ class Textile { function TextileThis($text, $lite='', $encode='', $noimage='', $strict='') { if ($lite == '' && $encode == '') $text = Markdown($text); |
