From ad936fd7ae65ffc642d2727c7a1e0c9cd8630942 Mon Sep 17 00:00:00 2001 From: Stefan Huber Date: Thu, 3 Aug 2023 21:16:47 +0200 Subject: [PATCH] bib2html.py: Print entry type --- bib2html.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bib2html.py b/bib2html.py index a595f42..309b6c4 100755 --- a/bib2html.py +++ b/bib2html.py @@ -252,10 +252,8 @@ if __name__ == "__main__": continue print("
") - print("[" + key + "]
") - + print("[{}]
{}
".format(key, key, entry.type)) e = format_entry(entry) print(e) print("
\n") - -- 2.30.2