From 35e9f2bbc0c5f41356dabdad0ac8179a014cd8bb Mon Sep 17 00:00:00 2001 From: jfranklin9000 Date: Thu, 24 Dec 2020 03:03:30 -0600 Subject: [PATCH] Remove blog page content enclosing paragraph tags in Overview (#1267) --- docs/content/documentation/getting-started/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/documentation/getting-started/overview.md b/docs/content/documentation/getting-started/overview.md index 06e590dd..10604816 100644 --- a/docs/content/documentation/getting-started/overview.md +++ b/docs/content/documentation/getting-started/overview.md @@ -173,7 +173,7 @@ We now need to make the `blog-page.html` template. In the `templates` directory, {{ page.title }}

{{ page.date }}

-

{{ page.content | safe }}

+{{ page.content | safe }} {% endblock content %} ```