Tests with new markdown library

This commit is contained in:
Michael Vogel 2015-02-23 08:27:35 +01:00
parent 70615d7f78
commit b710c8bbfd
12 changed files with 3694 additions and 7 deletions

View file

@ -0,0 +1,17 @@
<?php
//# Install PSR-0-compatible class autoloader
//spl_autoload_register(function($class){
// require preg_replace('{\\\\|_(?!.*\\\\)}', DIRECTORY_SEPARATOR, ltrim($class, '\\')).'.php';
//});
require_once("library/php-markdown/Michelf/MarkdownExtra.inc.php");
# Get Markdown class
use \Michelf\MarkdownExtra;
function Markdown($text) {
# Read file and pass content through the Markdown parser
$html = MarkdownExtra::defaultTransform($text);
return $html;
}
?>