tFix hiding of url line - scholarref - tools for DOI and BiBTeX reference extraction, fetching, and parsing
(HTM) git clone git://src.adamsgaard.dk/scholarref
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 4bc5baa7feb7ad8b191cb069fcc6edb287ec05bd
(DIR) parent 9127175cc592218631c6454141bf8547b9cca4af
(HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Thu, 26 Sep 2019 15:49:08 +0200
Fix hiding of url line
Diffstat:
M getref | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/getref b/getref
t@@ -105,7 +105,7 @@ get_citation() {
result="$(echo "$result" | format_bibtex_key)"
[ "$fulljournal" = 0 ] && result="$(echo "$result" | abbreviate_journal_name)"
[ "$fullauthor" = 0 ] && result="$(echo "$result" | abbreviate_author_name)"
- result="$(echo "$result" | grep -v '^ url' )"
+ result="$(echo "$result" | grep -v '^\turl' )"
if [ "$nonewline" = 1 ]; then
printf "\n%s" "$result"
else