Hi.
Why does Grav generate two additional \<p> tags in the HTML output of the page.
Example:
<p>{{page.content|raw}}</p>
Output (you can see it in the attached image):
<p></p>
<p>Lorem ipsum pain sit amet, consectetur adipiscing elit.</p>
<p></p>

The code in the Twig template is as follows:
<h2> {{page.title}} </h2>
<p> {{page.header.subtitle}} </p>
<p> {{content|raw}} </p>
If I disable Process Markdown in Admin, it doesn't add them.
Why is this happening?
Thanks.