git » alan.git » commit 5265446

Tighten booklet version line footprint and use monospace

author Alan Dipert
2025-12-04 16:12:05 UTC
committer Alan Dipert
2025-12-04 16:12:05 UTC
parent 5fae0b7f370ad22a4ba3c2b5c1a22ba75d31359e

Tighten booklet version line footprint and use monospace

render_text.py +2 -2

diff --git a/render_text.py b/render_text.py
index 0c8762d..f8af9fb 100644
--- a/render_text.py
+++ b/render_text.py
@@ -34,8 +34,8 @@ def render_booklet(data: Dict[str, Any]) -> str:
         info_bits.append(f"params: {joined}")
     if info_bits:
         lines.append(
-            f"<div style=\"font-size: 0.9em; font-style: italic; margin: 0 0 4px 0;\">"
-            f"Test Version: {'; '.join(info_bits)}</div>"
+            f"<div style=\"font-size: 0.8em; font-family: monospace; margin: 0 0 6px 0;\">"
+            f"Test Version: {'; '.join(info_bits)}</div><br/>"
         )
     if meta.get("instructions"):
         lines.append(meta["instructions"])