From: Stefan Huber Date: Tue, 3 Sep 2024 07:47:24 +0000 (+0200) Subject: bib2html.py: Use journaltitle X-Git-Url: https://git.sthu.org/?a=commitdiff_plain;h=7747158a770d8c006dab5dcc0d2c9a9fd13c80fc;p=shutils.git bib2html.py: Use journaltitle --- diff --git a/bib2html.py b/bib2html.py index 7a1b7d9..ae64a1c 100755 --- a/bib2html.py +++ b/bib2html.py @@ -76,7 +76,9 @@ def format_authors(entry): def format_details_article(entry): - where = format_field(entry, 'journal') + where = format_field(entry, 'journaltitle') + if where == "": + where = format_field(entry, 'journal') line = [] line.append(format_field(entry, 'pages', pre='pp. '))