PluginProbe
Elementor Website Builder – more than just a page builder / 4.2.4
Elementor Website Builder – more than just a page builder v4.2.4
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | includes/widgets/text-editor.php +11 -0 4.0.84.2.4 View file →
@@ -635,8 +635,19 @@
635 635 *
636 636 * @since 2.9.0
637 637 * @access protected
638 638 */
639 + public function render_markdown(): string {
640 + $editor_content = $this->get_settings_for_display( 'editor' );
641 + $editor_content = $this->parse_text_editor( $editor_content );
642 +
643 + if ( empty( $editor_content ) ) {
644 + return '';
645 + }
646 +
647 + return \Elementor\Modules\MarkdownRender\Html_To_Markdown::convert( $editor_content );
648 + }
649 +
639 650 protected function content_template() {
640 651 ?>
641 652 <#
642 653 if ( '' === settings.editor ) {