From f103cc51b5822f77c7ff79c589fb77f05dda577b Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 22 Dec 2022 23:01:43 +0100 Subject: [PATCH] Add slight visual flair to stdout citekey display --- extract/extract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extract/extract.py b/extract/extract.py index 0d127aa..044b84d 100644 --- a/extract/extract.py +++ b/extract/extract.py @@ -171,7 +171,7 @@ class ExtractPlugin(PapersPlugin): paper = contents[0] annotations = contents[1] if annotations: - output += f"{paper.citekey}\n" + output += f"------ {paper.citekey} ------\n\n" for annot in annotations: output += f'{annot}\n\n' output += "\n"