πŸ‡©πŸ‡ͺGermany @mee_sha

Account created on 19 March 2010, about 14 years ago
#

Recent comments

πŸ‡©πŸ‡ͺ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! :-)

Production build 0.69.0 2024