tags. This adds a filter prior to saving the post via * REST API to disable markdown support. Disables markdown support provided by * plugins Jetpack, JP-Markdown, and WP Editor.MD * * @since 1.3.0 * @deprecated 5.0.0 * * @param array $post Post object which contains content to check for block. * @return array $post Post object. */ function gutenberg_remove_wpcom_markdown_support( $post ) { _deprecated_function( __FUNCTION__, '5.0.0' ); return $post; }