I’m sure this is an elementary error but why is <p> (and other HTML tags) being rendered as <p> in the generated HTML?
My index.html file is:
<body>
<h1>{{ section.title }}</h1>
{{ section.content }}
</body>
my _index.md file is:
+++
title = "Test"
+++
Test
and the generated html is:
<body>
<h1>Test</h1>
<p>Test</p>
</body>