From 345f7bddfb30c582461ca5f9f4f94ae6922007cc Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Fri, 3 Jul 2020 21:25:17 +0200
Subject: [PATCH] Highlight week structure in HTML output.

---
 enhance_table.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/enhance_table.py b/enhance_table.py
index bdf91e1..8ac4fac 100755
--- a/enhance_table.py
+++ b/enhance_table.py
@@ -134,6 +134,7 @@ if output_type == 'html':
     print('<html>')
     print('<style>')
     print('table, tr, th, td { border: 1px solid black; }')
+    print('tr:nth-child(7n+2) td { background-color: yellow; }')
     print('</style>')
     print('<table>')
     print('<tr>')
-- 
2.30.2