I added this jQuery to eliminate that p tag:
jQuery(document).ready(function ($) {
$('p[data-name="t4b"]').each(function () {
const dataContent = $(this).attr('data-content');
if (dataContent && dataContent.startsWith("t4b:") && dataContent.includes(":start")) {
$(this).remove();
}
});
});
/templates/t4_bs5_blank/js/template.js
Kindly check.