There might be an error within theme-tutorial for 1.7

Hi folks,

I am currently building my own site from scratch, starting at the bottom with a theme. I followed all steps, even with using a default.html.twig containing

{% extends 'partials/base.html.twig' %}
{% block content %}
    {{ page.content }}
{% endblock %}

as described in step 4 (https://learn.getgrav.org/17/themes/theme-tutorial).

I continued the other steps and after activating my theme, there was html markup shown instead of rendering it. A headline was shown as
<h1>My headline
and not My headline.

Then I had a look at the files contained in quark - and there was a subtle difference in default.html.twig:

{% extends 'partials/base.html.twig' %}
{% block content %}
    {{ page.content|raw }}
{% endblock %}

I added the missing
|raw
and my theme worked.

Perhaps I am wrong, but you should have a look at the theme tutorials mentioned step 4.

Thank you and greetings,

Markus

Issue was solved by adding " | raw" at the mentioned code snippet.