Hey everybody,
in the final html output are some <p> tags I cannot explain myself where those came from.
My template file the relevant block is:
<div class="main-container">
{% block content %}
My default.md starts with html code like this:
<a id="" class="in-page-link" data-scroll-id="cover"></a>
<section class="cover height-70 imagebg" data-overlay="2">
The compiled html result looks like this:
<div class="main-container"> <p> <a id="" class="in-page-link" data-scroll-id="cover"></a> </p>
<section class="cover height-70 imagebg" data-overlay="2">
So where do those <p> tags come from? They are not in the template file, nor in the page files.
Any hint is appreciated.
Thanks