diff options
Diffstat (limited to 'fatcat_scholar')
-rw-r--r-- | fatcat_scholar/search.py | 2 | ||||
-rw-r--r-- | fatcat_scholar/templates/search_macros.html | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/fatcat_scholar/search.py b/fatcat_scholar/search.py index cbfc465..600745f 100644 --- a/fatcat_scholar/search.py +++ b/fatcat_scholar/search.py @@ -224,6 +224,8 @@ def process_query(query: FulltextQuery) -> FulltextHits: pmcid = clean_pmcid(query.q) if pmcid: return do_lookup_query(f'pmcid:"{pmcid}"') + if query.q.strip().startswith("key:"): + return do_lookup_query(query.q) # if this is a citation string, do a fuzzy lookup if settings.ENABLE_CITATION_QUERY and sniff_citation_query(query.q): diff --git a/fatcat_scholar/templates/search_macros.html b/fatcat_scholar/templates/search_macros.html index ca6d9f5..3ef5174 100644 --- a/fatcat_scholar/templates/search_macros.html +++ b/fatcat_scholar/templates/search_macros.html @@ -488,6 +488,12 @@ </button> </a> + <a href="{{ lang_prefix }}/search?q=key:{{ paper.key }}" rel="noopener" title="{{ _('permalink') }}"> + <button class="circular ui icon compact basic button" aria-label=""> + <i class="linkify icon"></i> + </button> + </a> + </div> </div> |