1
0

Parsedown.php 284 B

123456789
  1. <?php
  2. if ( !class_exists('Parsedown', false) ) {
  3. //Load the Parsedown version that's compatible with the current PHP version.
  4. if ( version_compare(PHP_VERSION, '5.3.0', '>=') ) {
  5. require __DIR__ . '/ParsedownModern.php';
  6. } else {
  7. require __DIR__ . '/ParsedownLegacy.php';
  8. }
  9. }