Strange behaviour

Hey everybody,

in the final html output are some

tags I cannot explain myself where those came from.

My template file the relevant block is:

{% block content %}

My default.md starts with html code like this:

The compiled html result looks like this:

So where do those

tags come from? They are not in the template file, nor in the page files.
Any hint is appreciated.

Thanks

Markdown processing is adding that <p> tag. You can try adding

process:
  markdown: false

in the page header to tell the page not to process it as markdown.

https://learn.getgrav.org/content/headers#process)

solved it. Thank you!