Fix work experience heading line breaks

This commit is contained in:
Marty Oehme 2023-06-26 16:28:34 +02:00
parent aee96bc192
commit 61f5d0d2ff
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
2 changed files with 9 additions and 24 deletions

View file

@ -22,6 +22,7 @@ def experience_to_md(data: dict[str, Any], lang: str = "en", headline: str = "")
for point in exp["bullets"]:
md += f"* {point[lang]}\n"
md += "\n\n"
return md