PluginProbe
TablePress – Tables in WordPress made easy / 3.0
TablePress – Tables in WordPress made easy v3.0
3.3.4 3.3.3 3.3.2 3.3.1 trunk 1.12 1.14 1.9.2 2.0.4 2.1.7 2.1.8 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3 2.3.1 2.3.2 2.4 2.4.1 2.4.2 2.4.3 2.4.4 All 44 releases
← All changes | blocks/table/src/transforms.js +1 -1 2.2.33.0 View file →
@@ -30,9 +30,9 @@
30 30 *
31 31 * @param {string} content The Shortcode as a text string.
32 32 * @return {Object} TablePress table block.
33 33 */
34 -const convertShortcodeTextToBlock = function( content ) {
34 +const convertShortcodeTextToBlock = function ( content ) {
35 35 let shortcodeAttrs = shortcode.next( tp.table.shortcode, content ).shortcode.attrs;
36 36 shortcodeAttrs = { named: { ...shortcodeAttrs.named }, numeric: [ ...shortcodeAttrs.numeric ] }; // Use object destructuring to get a clone of the object.
37 37 const id = shortcodeAttrs.named.id;
38 38 delete shortcodeAttrs.named.id;