Wordpress - Shortcodes and Blocks
Find the bug in this shortcode handler:
function test_shortcode($atts) {
$atts = shortcode_atts(['text' => 'Default'], $atts);
echo $atts['text'];
}
add_shortcode('test', 'test_shortcode');