We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a71acf + 31b42e7 commit 97ec3d1Copy full SHA for 97ec3d1
lmfdb/knowledge/main.py
@@ -197,6 +197,12 @@ def ref_to_link(txt):
197
this_link = '{{ LINK_EXT("' + 'arXiv:' + the_arx + '", '
198
this_link += '"https://arxiv.org/abs/'
199
this_link += the_arx + '")| safe}}'
200
+ elif ref.lower().startswith("zbl"):
201
+ ref = ref.replace(":", "")
202
+ the_zbl = ref[3:] # remove the "Zbl"
203
+ this_link = '{{ LINK_EXT("' + 'Zbl:' + the_zbl + '", '
204
+ this_link += '"https://zbmath.org/?q=an:'
205
+ this_link += the_zbl + '")| safe}}'
206
207
if this_link:
208
if ans:
0 commit comments