From 9543d11362377e750255a52f6df46e6f70b2f137 Mon Sep 17 00:00:00 2001
From: Mischa Salle <msalle@nikhef.nl>
Date: Tue, 9 Jun 2020 11:21:19 +0200
Subject: [PATCH] first line in code block misaligned

It's easiest prevented by adding a linebreak after the <code> tag. This is not
ideal but a quick fix.
---
 modules/cron/templates/croninfo.twig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/cron/templates/croninfo.twig b/modules/cron/templates/croninfo.twig
index 781384915..f65dbd8cd 100644
--- a/modules/cron/templates/croninfo.twig
+++ b/modules/cron/templates/croninfo.twig
@@ -11,7 +11,7 @@
     <p>{{ 'Here is a suggestion for a crontab file:'|trans }}<br /><br /></p>
 
     <div class="code-box code-box-content">
-        <code id="cronlist">
+        <code id="cronlist"><br>
         {% for url in urls %}
             # {{ 'Run cron:'|trans }} [{{ url.tag }}]<br />
             {{ url.int }} curl --silent "{{ url.exec_href }}" > /dev/null 2>&amp;1<br />
-- 
GitLab