🇩🇪Germany mee_sha
Nevermind. Had to clear caches before trying the database update.
🇩🇪Germany mee_sha
Additional experience:
Let's assume, the inserted layout source code looks like this:
<div class="layout two-col">
<div class="region-left">
</div>
<div class="region-right">
</div>
</div>
When I paste content encapsulated with only one html tag (like <p>Content</p>
) into the left region, it works as supposed, disregarding that the surrounding p tag ist stripped. Result:
<div class="layout two-col">
<div class="region-left">
Content
</div>
<div class="region-right">
</div>
</div>
If the pasted content hast two html tags (like <h2>Headline</h2><p>Content</p>
), the content of the first tag is inserted into the intended layout region, the content of the second is inserted after and outside of that region. Result:
<div class="layout two-col">
<div class="region-left">
Headline
</div>
Content
<div class="region-right">
</div>
</div>
🇩🇪Germany mee_sha
Thank you very much, that was exactly what I was looking for! :-)