From f0088d252061b9c5326b54512854fe2a84514513 Mon Sep 17 00:00:00 2001
From: Dmitry Petrov <dmitry.petrov@rtsoft.de>
Date: Thu, 14 Mar 2024 20:16:34 +0100
Subject: [PATCH] convert_md2html: fix long commands

Several blocks of code are too long and don't fit on the page.
Words are not wrapped to the next line.
To fix this, adjust the span slacc in css.
---
 scripts/convert_md2html.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/scripts/convert_md2html.py b/scripts/convert_md2html.py
index 1ccde57a..e404214e 100755
--- a/scripts/convert_md2html.py
+++ b/scripts/convert_md2html.py
@@ -44,6 +44,10 @@ h2 {
     font-size: 18px;
     color: #666666;
 }
+span {
+    width: 100%;
+    white-space: normal;
+}
 table {
     margin-bottom: 24px;
     border-spacing: 0;
-- 
GitLab