Plugin Directory

Changeset 3394821


Ignore:
Timestamp:
11/13/2025 07:56:32 AM (5 months ago)
Author:
peter202202
Message:

Releasing v3.24.1

Location:
markup-markdown
Files:
2451 added
3 edited

Legend:

Unmodified
Added
Removed
  • markup-markdown/trunk/MarkupMarkdown/Addons/Released/Media/Image.php

    r3392623 r3394821  
    6767        wp_enqueue_style( 'wp-block-image', '/wp-includes/blocks/image/style.min.css', array(), $blog_version );
    6868        wp_enqueue_style( 'wp-block-embed', '/wp-includes/blocks/embed/style.min.css', array(), $blog_version );
     69        wp_enqueue_style( 'wp-block-table', '/wp-includes/blocks/embed/table.min.css', array(), $blog_version );
    6970        wp_enqueue_style( 'wp-block-gallery', '/wp-includes/blocks/gallery/style.min.css', array(), $blog_version );
    7071        wp_enqueue_style( 'mmd-block-gallery', mmd()->plugin_uri . '/assets/markup-markdown/css/gallery-compatibility.min.css', array(), $blog_version );
     
    102103        if ( preg_match( '#</figure></p>#', $content ) ) :
    103104            $content = str_replace( [ '<p><figure', '</figure></p>' ], [ '<figure', '</figure>' ], $content );
     105        endif;
     106        if ( preg_match( '#<table>#', $content ) && defined( 'MMD_USE_BLOCKSTYLES' ) && MMD_USE_BLOCKSTYLES ) :
     107            $content = preg_replace( '#<table>#', '<figure class="wp-block-table"><table class="has-fixed-layout">', str_replace( '</table>', '</table></figure>', $content ) );
    104108        endif;
    105109        return $content;
  • markup-markdown/trunk/markup-markdown.php

    r3393327 r3394821  
    66 * Plugin URI:  https://www.markup-markdown.com
    77 * Description: Replaces the Gutenberg Block Editor in favor of pure markdown based markups
    8  * Version:     3.24.0
     8 * Version:     3.24.1
    99 * Author:      Pierre-Henri Lavigne
    1010 * Author URI:  https://www.markup-markdown.com
     
    3434
    3535        protected $settings = array(
    36             'version' => '3.24.0',
     36            'version' => '3.24.1',
    3737            'plugin_uri' => '',
    3838            'plugin_dir' => '',
  • markup-markdown/trunk/readme.txt

    r3393327 r3394821  
    11=== Markup Markdown ===
    22Tags: Editor, Markdown
    3 Stable Tag: 3.24.0
    4 Version: 3.24.0
     3Stable Tag: 3.24.1
     4Version: 3.24.1
    55Requires at least: 6.6
    66Tested up to: 6.8
     
    6969
    7070== Changelog ==
     71
     72= 3.24.1 =
     73
     74Bug fix / Improvement:
     75- Adding missing classnames for tables for themes using Gutenberg styles
    7176
    7277= 3.24.0 =
Note: See TracChangeset for help on using the changeset viewer.