|
|
@ -38,14 +38,14 @@ function preprocess_page(array &$variables): void { |
|
|
|
element. This may break some CSS rules. |
|
|
|
element. This may break some CSS rules. |
|
|
|
|
|
|
|
|
|
|
|
Before: |
|
|
|
Before: |
|
|
|
```HTML |
|
|
|
```html |
|
|
|
<div> |
|
|
|
<div> |
|
|
|
<div class="from-block-plugin">Block content</div> |
|
|
|
<div class="from-block-plugin">Block content</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
``` |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
After: |
|
|
|
After: |
|
|
|
```HTML |
|
|
|
```html |
|
|
|
<div class="from-block-plugin"> |
|
|
|
<div class="from-block-plugin"> |
|
|
|
<div>Block content</div> |
|
|
|
<div>Block content</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|