10 lines
293 B
PHP
10 lines
293 B
PHP
|
<?php
|
||
|
if ( !class_exists('Parsedown', false) ) {
|
||
|
//Load the Parsedown version that's compatible with the current PHP version.
|
||
|
if ( version_compare(PHP_VERSION, '5.3.0', '>=') ) {
|
||
|
require __DIR__ . '/ParsedownModern.php';
|
||
|
} else {
|
||
|
require __DIR__ . '/ParsedownLegacy.php';
|
||
|
}
|
||
|
}
|