2011-04-11 12:59:26 +00:00
|
|
|
<?php
|
2015-02-23 07:27:35 +00:00
|
|
|
//# Install PSR-0-compatible class autoloader
|
|
|
|
//spl_autoload_register(function($class){
|
|
|
|
// require preg_replace('{\\\\|_(?!.*\\\\)}', DIRECTORY_SEPARATOR, ltrim($class, '\\')).'.php';
|
|
|
|
//});
|
2011-04-11 12:59:26 +00:00
|
|
|
|
2015-02-23 07:27:35 +00:00
|
|
|
require_once("library/php-markdown/Michelf/MarkdownExtra.inc.php");
|
|
|
|
# Get Markdown class
|
|
|
|
use \Michelf\MarkdownExtra;
|
2015-02-22 19:06:13 +00:00
|
|
|
|
2015-02-23 07:27:35 +00:00
|
|
|
function Markdown($text) {
|
2015-02-23 23:08:17 +00:00
|
|
|
|
|
|
|
$a = get_app();
|
|
|
|
|
|
|
|
$stamp1 = microtime(true);
|
|
|
|
|
2015-02-23 07:27:35 +00:00
|
|
|
# Read file and pass content through the Markdown parser
|
|
|
|
$html = MarkdownExtra::defaultTransform($text);
|
2015-02-22 19:06:13 +00:00
|
|
|
|
2015-02-24 09:21:09 +00:00
|
|
|
$a->save_timestamp($stamp1, "parser");
|
2015-02-23 23:08:17 +00:00
|
|
|
|
2015-02-23 07:27:35 +00:00
|
|
|
return $html;
|
2011-04-11 12:59:26 +00:00
|
|
|
}
|
2015-02-22 16:38:28 +00:00
|
|
|
?>
|