🧹 add a final newline to markdown files

This commit is contained in:
neingeist 2025-06-02 12:35:15 +02:00
parent 6e2c83eaa3
commit 81694d8aaf
24 changed files with 24 additions and 24 deletions

View file

@ -91,7 +91,7 @@ def format_recipe_to_markdown(recipe):
if key != "@type":
md.append(f"- **{key.replace('_', ' ').capitalize()}**: {value}")
return '\n'.join(md)
return '\n'.join(md) + '\n'
def main(json_file):
with open(json_file, 'r', encoding='utf-8') as f: