diff --git a/processing/content.py b/processing/content.py index 92b3d51..25e003e 100644 --- a/processing/content.py +++ b/processing/content.py @@ -18,7 +18,7 @@ def experience_to_md(data: dict[str, Any], lang: str = "en", headline: str = "") md += f"## {exp['title'][lang]}\\hfill{exp['date'][lang]}\n\n" if "publication" in exp: - md += f"> {exp['publication'][lang]}\n\n" + md += f"> {exp['publication'][lang] or ''}\n\n" for point in exp["bullets"]: md += f"* {point[lang]}\n"