Remove whitespace that messed with clean copy+pastes

This commit is contained in:
Jordan Johnson-Doyle 2019-02-13 22:15:38 +00:00
parent 707b5b16e7
commit cd8fb8e349
No known key found for this signature in database
GPG key ID: A95F87B578CE79B6
2 changed files with 5 additions and 9 deletions

View file

@ -22,8 +22,5 @@
{% endblock styles %}
</style>
</head>
<body>
{% block content %}
{% endblock content %}
</body>
<body>{% block content %}{% endblock content %}</body>
</html>

View file

@ -6,11 +6,10 @@
width: 100%;
margin: 0;
overflow: scroll;
font-family: Courier;
line-height: 1.1;
font-family: inherit;
font-size: 1rem;
line-height: inherit;
}
{% endblock styles %}
{% block content %}
<pre><code>{{ content|safe }}</code></pre>
{% endblock content %}
{% block content %}<pre><code>{{ content|safe }}</code></pre>{% endblock content %}