I am trying to create a container block based on Melonpan Block Container using a filter. My goal is to create a block with shaped/angled edges top and bottom.
The effect can be achieved using CSS and wrapping the content in two transformed divs.
Is it possible to add wrapper divs to the .mbc-container div to make one block in the editor?
E.G.
<div class="transform-containter">
<div class="transform-right">
<div class="transform-left">
<div class="transform-content">
<div class="mbc-container">
BLOCK CONTENT HERE
</div>
</div>
</div>
</div>
</div>
]]>