In a project that I have to do, I need to have all the sections with their respective headers by passing my html file through an outliner
My code is as follows:
<main id="todasRecetas" class="contenedor"> (sería el padre)
<article id="articulo1"> Articulo 1 - subencabezado 1 </article>
<article id="articulo2"> Articulo 2 </article>
<article id="articulo3"> Articulo 3 </article>
<article id="articulo4"> Articulo 4 </article>
</main>
<article id="participanteGanador" class="contenedor">
Articulo 5
</article>
By passing it through Outliner I get this:
How can I make article 5 look like another header on the page and not a header on the main label?