kollapsminoriteten/wp-content/plugins/jetpack/_inc/lib/markdown.php

19 lines
391 B
PHP
Raw Normal View History

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
*/
2025-12-12 13:13:07 +01:00
if ( ! defined( 'ABSPATH' ) ) {
exit( 0 );
}
2021-04-27 08:32:47 +02:00
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';