Web clipper template - insert newline

What I’m trying to do

I’m trying to insert a simple newline using web clipper logic. Say i have something like this:

{% elseif section contains "notion-callout-block" %}
{{section|strip_md|callout}}
{% endif %}

How would i make it print double newlines before and after this block?

Things I have tried

Adding literal blank lines in the editor, as well as ‘\n\n’. frankly i have no other ideas.

to clarify, what i’m getting is:

normal block text
> [!info]
> my callout
normal block text

and what i want is:

normal block text

> [!info]
> my callout

normal block text

and i can’t figure out what the newline character would be in this syntax. the only other option would be to do tedious regex.