diff options
author | Yury German <blueknight@gentoo.org> | 2019-04-28 17:39:03 -0400 |
---|---|---|
committer | Yury German <blueknight@gentoo.org> | 2019-04-28 17:39:03 -0400 |
commit | 2ab16973706e120bc344c83be6295b54fd908c57 (patch) | |
tree | 358267a52d9542c77c90e3663cea32d13b8cb639 /plugins/jetpack/extensions/blocks/markdown/markdown.php | |
parent | Update twentysixteen 1.7 (diff) | |
download | blogs-gentoo-2ab16973706e120bc344c83be6295b54fd908c57.tar.gz blogs-gentoo-2ab16973706e120bc344c83be6295b54fd908c57.tar.bz2 blogs-gentoo-2ab16973706e120bc344c83be6295b54fd908c57.zip |
Updating packages for 5.1.1
Signed-off-by: Yury German <blueknight@gentoo.org>
Diffstat (limited to 'plugins/jetpack/extensions/blocks/markdown/markdown.php')
-rw-r--r-- | plugins/jetpack/extensions/blocks/markdown/markdown.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/jetpack/extensions/blocks/markdown/markdown.php b/plugins/jetpack/extensions/blocks/markdown/markdown.php new file mode 100644 index 00000000..7490b9d2 --- /dev/null +++ b/plugins/jetpack/extensions/blocks/markdown/markdown.php @@ -0,0 +1,20 @@ +<?php +/** + * Markdown Block. + * + * @since 6.8.0 + * + * @package Jetpack + */ + +/** + * The block depends on the Markdown module to be active for now. + * Related discussion: https://github.com/Automattic/jetpack/issues/10294 + */ +if ( + ( defined( 'IS_WPCOM' ) && IS_WPCOM ) + || ( method_exists( 'Jetpack', 'is_module_active' ) && Jetpack::is_module_active( 'markdown' ) ) +) { + jetpack_register_block( 'jetpack/markdown' ); +} + |