mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 07:09:56 +09:00
Update composer dependencies
This commit is contained in:
parent
866a33fd39
commit
ab195fbf3b
463 changed files with 14839 additions and 11927 deletions
8
vendor/michelf/php-markdown/Readme.php
vendored
8
vendor/michelf/php-markdown/Readme.php
vendored
|
|
@ -4,13 +4,15 @@
|
|||
// through the Markdown filter. You can adapt this sample code in any way
|
||||
// you like.
|
||||
|
||||
// Install PSR-0-compatible class autoloader
|
||||
// Install PSR-4-compatible class autoloader
|
||||
spl_autoload_register(function($class){
|
||||
require preg_replace('{\\\\|_(?!.*\\\\)}', DIRECTORY_SEPARATOR, ltrim($class, '\\')).'.php';
|
||||
require str_replace('\\', DIRECTORY_SEPARATOR, ltrim($class, '\\')).'.php';
|
||||
});
|
||||
// If using Composer, use this instead:
|
||||
//require 'vendor/autoloader.php';
|
||||
|
||||
// Get Markdown class
|
||||
use \Michelf\Markdown;
|
||||
use Michelf\Markdown;
|
||||
|
||||
// Read file and pass content through the Markdown parser
|
||||
$text = file_get_contents('Readme.md');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue