From c31e8c8052386de10ef85626f508d608c6a55df1 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Mon, 6 Nov 2023 17:02:27 +0100 Subject: events WIP --- tools/gencards.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tools/gencards.py') diff --git a/tools/gencards.py b/tools/gencards.py index 87fd401..2cb04d0 100644 --- a/tools/gencards.py +++ b/tools/gencards.py @@ -9,7 +9,7 @@ cards = [None] card = { 'id': 1, 'type': "", - 'title': "", + 'name': "", 'era': "", 'text': [], 'attrs': {} @@ -19,7 +19,7 @@ kv_pattern = r'' file_format = "tools/{}_cards.md" def flush(): - if card['title']: + if card['name']: output = card.copy() # Combine text into a single string output['text'] = " ".join(output['text']) @@ -35,10 +35,10 @@ def flush(): cards.append(output) - # print("CARD {} - {}\n# {}\n".format(output['id'], output['title'], output['text'])) + # print("CARD {} - {}\n# {}\n".format(output['id'], output['name'], output['text'])) # Reset card attributes for the next entry - card['title'] = "" + card['name'] = "" card['text'] = [] card['attrs'] = {} card['id'] += 1 @@ -57,7 +57,7 @@ def read_cards(_card_type): card['era'] = line[2:].strip() elif line.startswith("## "): flush() - card['title'] = line[3:].strip() + card['name'] = line[3:].strip() elif match := re.match(kv_pattern, line): key = match.group('key').strip() value = match.group('value').strip() -- cgit v1.2.3