From 3fef197d33f846c9188da8a2774d7389c71593b3 Mon Sep 17 00:00:00 2001 From: redxef Date: Tue, 11 Mar 2025 18:59:13 +0100 Subject: [PATCH] fix: ensure newline at end of file. --- fromtext.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fromtext.py b/fromtext.py index 40723c2..69a4879 100755 --- a/fromtext.py +++ b/fromtext.py @@ -2,6 +2,7 @@ # -*- coding: utf-8 -*- import os +import string import sys import pathlib @@ -31,12 +32,15 @@ def process_line( columns = [_sanitize_line(l) for l in columns] deckpath = _get_path(target_dir, columns[deck_index]) columns = [columns[i] for i in columns_indices] - slug = ''.join(c for c in columns[0].lower() if c.isalnum() or c == ' ') + slug = ''.join(c for c in columns[0].lower() if c in string.ascii_lowercase + string.digits + ' ') slug = slug.replace(' ', '-') base_filename = deckpath / slug for i, c in enumerate(columns): with (base_filename.parent / (base_filename.name + f'.{i}.md')).open('w') as fp: fp.write(c) + if not c.endswith('\n'): + fp.write('\n') + def main( *,