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

15 lines
344 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
*/
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';