git » alan.git » commit 0aabbc4

Improve dictionary headings formatting in booklet

author Alan Dipert
2025-12-04 05:04:24 UTC
committer Alan Dipert
2025-12-04 05:04:24 UTC
parent da12529a70ec2ccf3cc303b365c7a875220ae8bb

Improve dictionary headings formatting in booklet

render_text.py +1 -1

diff --git a/render_text.py b/render_text.py
index 77ba87a..5f03a7d 100644
--- a/render_text.py
+++ b/render_text.py
@@ -45,7 +45,7 @@ def render_booklet(data: Dict[str, Any]) -> str:
             ("Verbs", dict_data.get("verbs", {})),
             ("Adjectives", dict_data.get("adjectives", {})),
         ]:
-            lines.append(f"**{title}**")
+            lines.append(f"### {title}")
             for eng, lang in group.items():
                 lines.append(f"- {eng} = {lang}")
         lines.append("")