I have a page with lots of content
<div1></div1>
<div2></div2>
<div3>
<div4></div4>
</div3>
<div5></div5>
how is it possible to display the div1 underneath div4 without modifying the html ?
the desired 'rendered' output should look as if it was written like this:
<div2></div2>
<div3>
<div4></div4>
<div1></div1>
</div3>
<div5></div5>
but instead it should be written like the first code block