PluginProbe
WPSSO Core – Complete Schema Markup and Meta Tags / 22.7.0
WPSSO Core – Complete Schema Markup and Meta Tags v22.7.0
22.7.0 22.6.1 22.6.0 22.5.3 22.5.2 22.5.1 22.4.0 22.3.0 22.2.1 22.2.0 22.1.3 22.1.2 22.1.1 22.1.0 22.0.0 21.13.3 21.13.2 trunk 21.13.1
wpsso / lib / ext / markdown / MarkdownExtra.inc.php

MarkdownExtra.inc.php in WPSSO Core – Complete Schema Markup and Meta Tags 22.7.0, at lib/ext/markdown/MarkdownExtra.inc.php

23 lines 669 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // Use this file if you cannot use class autoloading. It will include all the
4 // files needed for the MarkdownExtra parser.
5 //
6 // Take a look at the PSR-0-compatible class autoloading implementation
7 // in the Readme.php file if you want a simple autoloader setup.
8
9 if ( ! interface_exists( 'Michelf\MarkdownInterface' ) ) {
10
11 require_once dirname(__FILE__) . '/MarkdownInterface.php';
12 }
13
14 if ( ! class_exists( 'Michelf\Markdown' ) ) { // Implements MarkdownInterface.
15
16 require_once dirname(__FILE__) . '/Markdown.php';
17 }
18
19 if ( ! class_exists( 'Michelf\MarkdownExtra' ) ) { // Extends \Michelf\Markdown.
20
21 require_once dirname(__FILE__) . '/MarkdownExtra.php';
22 }
23