2021-04-27 08:32:47 +02:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Loader for the Markdown library.
|
|
|
|
|
*
|
|
|
|
|
* This file loads in a couple specific things from the markdown dir.
|
|
|
|
|
*
|
|
|
|
|
* @package automattic/jetpack
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if ( ! class_exists( 'MarkdownExtra_Parser' ) ) {
|
2022-12-15 17:41:53 +01:00
|
|
|
require_once JETPACK__PLUGIN_DIR . '/_inc/lib/markdown/extra.php';
|
2021-04-27 08:32:47 +02:00
|
|
|
}
|
|
|
|
|
|
2022-12-15 17:41:53 +01:00
|
|
|
require_once JETPACK__PLUGIN_DIR . '/_inc/lib/markdown/gfm.php';
|