additional_plugins/serendipity_event_markdown/lib/Readme.php

34 lines
776 B
PHP
Raw Normal View History

2014-01-04 12:58:43 +01:00
<?php
// This file passes the content of the Readme.md file in the same directory
// through the Markdown filter. You can adapt this sample code in any way
// you like.
2014-01-04 12:58:43 +01:00
// Install PSR-4-compatible class autoloader
2014-01-04 12:58:43 +01:00
spl_autoload_register(function($class){
require str_replace('\\', DIRECTORY_SEPARATOR, ltrim($class, '\\')).'.php';
2014-01-04 12:58:43 +01:00
});
// If using Composer, use this instead:
//require 'vendor/autoload.php';
2014-01-04 12:58:43 +01:00
// Get Markdown class
use Michelf\Markdown;
2014-01-04 12:58:43 +01:00
// Read file and pass content through the Markdown parser
2014-01-04 12:58:43 +01:00
$text = file_get_contents('Readme.md');
$html = Markdown::defaultTransform($text);
?>
<!DOCTYPE html>
<html>
<head>
<title>PHP Markdown Lib - Readme</title>
</head>
<body>
2014-01-04 12:58:43 +01:00
<?php
// Put HTML content in the document
2014-01-04 12:58:43 +01:00
echo $html;
?>
</body>
2014-01-04 12:58:43 +01:00
</html>