Hello Marius! Unfortunately, the block with arbitrary HTML still automatically inserts tags & nbsp; <br> and <p>
when you preview the article and when you publish it. They are generated exactly in the published form. It breaks all the styles of the article. I used to use the hook and shortcode, which remove the automatic creation of tags, now it does not work, even in a classic editor, after installing Gutenberg.
/**
* Disabling formatting of the visual editor in the right place and create the shortcode.
*/
function my_formatter($content) {
$new_content = '';
$pattern_full = '{(\[raw\].*?\[/raw\])}is';
$pattern_contents = '{\[raw\](.*?)\[/raw\]}is';
$pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE);
foreach ($pieces as $piece) {
if (preg_match($pattern_contents, $piece, $matches)) {
$new_content .= $matches[1];
} else {
$new_content .= wptexturize(wpautop($piece));
}
}
return $new_content;
}
remove_filter('the_content', 'wpautop');
remove_filter('the_content', 'wptexturize');
add_filter('the_content', 'my_formatter', 99);