Hi there,
for now you need tom use some PHP.
1, Add this PHP Snippet to your site:
add_filter( 'render_block', function( $block_content, $block ) {
if (
!is_admin()
&& ! empty( $block['attrs']['className'] )
) {
if ( strpos( $block['attrs']['className'], 'nofollow' ) !== false ) {
$block_content= str_replace( 'href','rel="nofollow" href' , $block_content );
}
if ( strpos( $block['attrs']['className'], 'sponsored' ) !== false ) {
$block_content= str_replace( 'href','rel="sponsored" href' , $block_content );
}
}
return $block_content;
}, 10, 2 );
Adding PHP: https://docs.generatepress.com/article/adding-php/
2. then select the block with the link and in Advanced > Additional CSS Class(es) add either: nofollow or sponsored