Skip to content

Commit 6c58018

Browse files
committed
Update products page.
1 parent b611f3e commit 6c58018

File tree

2 files changed

+48
-43
lines changed

2 files changed

+48
-43
lines changed

bin/rest_bib.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
Preprint
5959
For preprints that are hosted on an official repository.
6060
Blog Post
61-
Any informal web article.
61+
Any informal web article written by us.
6262
Manuscript
6363
Draft papers (pre-pre prints), papers under review, papers submitted, in
6464
preparation.
@@ -190,9 +190,9 @@ def formatter_presentations(data):
190190

191191
def formatter_proceedings(data):
192192
if data['DOI']:
193-
hyperlink = '`{DOI} <https://dx.doi.org/{DOI}>`_ '.format(**data)
193+
hyperlink = '`{DOI} <https://dx.doi.org/{DOI}>`_'.format(**data)
194194
elif data['url']:
195-
hyperlink = '`{url} <{url}>`_ '.format(**data)
195+
hyperlink = '`{url} <{url}>`_'.format(**data)
196196
else:
197197
hyperlink = ''
198198
template = (
@@ -214,7 +214,7 @@ def formatter_proceedings(data):
214214

215215
def formatter_book(data):
216216
if data['url']:
217-
hyperlink = '`{url} <{url}>`_ '.format(**data)
217+
hyperlink = '`{url} <{url}>`_'.format(**data)
218218
else:
219219
hyperlink = ''
220220
template = (

0 commit comments

Comments
 (0)