In my web app, the user can make blog posts. When I display the blog post, newlines aren\'t shown because I didn\'t replace the new lines with tags.
You can use the |safe filter, or use the autoescape blocks:
|safe
{% autoescape false %} {{ content goes here }} {% autoescape %}
You could also set autoescaping in the environment to False.
False