chendelong1999 commited on
Commit
4ade2ba
·
1 Parent(s): 94cf70c

no bold paper title

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -97,7 +97,7 @@ def get_md_citation(paper_info):
97
 
98
  # citation_str = paper_info['authors'][0]['name'] + " *et al.* "
99
  citation_str = ', '.join([author['name'] for author in paper_info['authors']]) + '. '
100
- citation_str += f"[**{paper_info['title']}**]({paper_info['url']}). "
101
  citation_str += f"*{get_abbreviated_venue(paper_info['venue'])}*"
102
  # citation_str += f" ({paper_info['year']})."
103
  citation_str += f" ({paper_info['publicationDate'][:-3].replace('-', '.')})."
 
97
 
98
  # citation_str = paper_info['authors'][0]['name'] + " *et al.* "
99
  citation_str = ', '.join([author['name'] for author in paper_info['authors']]) + '. '
100
+ citation_str += f"[{paper_info['title']}]({paper_info['url']}). "
101
  citation_str += f"*{get_abbreviated_venue(paper_info['venue'])}*"
102
  # citation_str += f" ({paper_info['year']})."
103
  citation_str += f" ({paper_info['publicationDate'][:-3].replace('-', '.')})."