From 35d7b95c48901f6e2e7530eff710e389acaac58f Mon Sep 17 00:00:00 2001 From: iLPdev Date: Sun, 23 Jul 2023 14:50:20 -0700 Subject: [PATCH] docs(how-to): fix first github html parsing error --- .../Part5/Add-a-simple-new-web-page.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/source/Howtos/Beginner-Tutorial/Part5/Add-a-simple-new-web-page.md b/docs/source/Howtos/Beginner-Tutorial/Part5/Add-a-simple-new-web-page.md index 73fdf975b1..db6458d04b 100644 --- a/docs/source/Howtos/Beginner-Tutorial/Part5/Add-a-simple-new-web-page.md +++ b/docs/source/Howtos/Beginner-Tutorial/Part5/Add-a-simple-new-web-page.md @@ -48,13 +48,15 @@ is not an HTML tutorial, so this file's content will be simple: ```html {% extends "base.html" %} -{% endblock %} - {% block content %}
-Expand All - @@ -55,9 +64,9 @@ This is not a HTML tutorial, so we'll go simple: +

A story about a tree

+

+ This is a story about a tree, a classic tale ... +

+
+
{% endblock %} ```