orgen-theme/theme-update-checker/vendor/Parsedown.php
2023-04-06 16:58:33 +08:00

10 lines
284 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';
}
}