@wordpress/block-library 7.14.12 → 7.14.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/block-library",
3
- "version": "7.14.12",
3
+ "version": "7.14.13",
4
4
  "description": "Block library for the WordPress editor.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -73,5 +73,5 @@
73
73
  "publishConfig": {
74
74
  "access": "public"
75
75
  },
76
- "gitHead": "ef24619c1f6949dbdcaa7e5538dd83715a461c3a"
76
+ "gitHead": "b0848494cdbee4708ff44efa9fad88a17c24204d"
77
77
  }
@@ -128,14 +128,14 @@ function render_block_core_template_part( $attributes ) {
128
128
  }
129
129
 
130
130
  // Run through the actions that are typically taken on the_content.
131
+ $content = shortcode_unautop( $content );
132
+ $content = do_shortcode( $content );
131
133
  $seen_ids[ $template_part_id ] = true;
132
134
  $content = do_blocks( $content );
133
135
  unset( $seen_ids[ $template_part_id ] );
134
136
  $content = wptexturize( $content );
135
137
  $content = convert_smilies( $content );
136
- $content = shortcode_unautop( $content );
137
138
  $content = wp_filter_content_tags( $content );
138
- $content = do_shortcode( $content );
139
139
 
140
140
  // Handle embeds for block template parts.
141
141
  global $wp_embed;