| 1 |
<?php |
| 2 |
/** |
| 3 |
* This file includes a set of temporary fixes for known compatibility |
| 4 |
* issues with third-party plugins. These fixes likely should not to be |
| 5 |
* included with core merge. |
| 6 |
* |
| 7 |
* @package gutenberg |
| 8 |
* @since 1.3.0 |
| 9 |
* |
| 10 |
* The goal is to provide a fix so |
| 11 |
* 1. users of the plugin can continue to use and test Gutenberg, |
| 12 |
* 2. provide a reference for developers of the plugin to work with, and |
| 13 |
* 3. provide reference for other plugin developers on how they might work |
| 14 |
* with Gutenberg. |
| 15 |
*/ |
| 16 |
|
| 17 |
/** |
| 18 |
* WPCOM markdown support causes issues when saving a Gutenberg post by |
| 19 |
* stripping out the <p> tags. This adds a filter prior to saving the post via |
| 20 |
* REST API to disable markdown support. Disables markdown support provided by |
| 21 |
* plugins Jetpack, JP-Markdown, and WP Editor.MD |
| 22 |
* |
| 23 |
* @since 1.3.0 |
| 24 |
* @deprecated 5.0.0 |
| 25 |
* |
| 26 |
* @param array $post Post object which contains content to check for block. |
| 27 |
* @return array $post Post object. |
| 28 |
*/ |
| 29 |
function gutenberg_remove_wpcom_markdown_support( $post ) { |
| 30 |
_deprecated_function( __FUNCTION__, '5.0.0' ); |
| 31 |
|
| 32 |
return $post; |
| 33 |
} |
| 34 |
|