Thanks for your answer CrouchingBruin.
In the end, I installed a plugin with the following code:
<?php
/*
Plugin Name: Disable wpautop
Plugin URI: https://www.urbangiraffe.com/plugins/disable-wpautop
Description: Disables WordPress automatic paragraph formatting
Author: John Godley
Version: 1.0
Author URI: https://www.urbangiraffe.com/
*/
remove_filter ('the_content', 'wpautop');
remove_filter ('comment_text', 'wpautop');
remove_filter( 'the_excerpt', 'wpautop' );
?>
I hope it will help someone.