Trans: Support DOI in DO field when reading EBSCO RIS
This commit is contained in:
parent
ed40d92352
commit
42a1551e85
1 changed files with 4 additions and 1 deletions
|
@ -115,6 +115,9 @@ function downloadFunction(text) {
|
||||||
if (text.match("L3")) {
|
if (text.match("L3")) {
|
||||||
item.DOI = text.match(/L3\s+\-\s*(.*)/)[1];
|
item.DOI = text.match(/L3\s+\-\s*(.*)/)[1];
|
||||||
}
|
}
|
||||||
|
if (text.match("DO")) {
|
||||||
|
item.DOI = text.match(/DO\s+\-\s*(.*)/)[1];
|
||||||
|
}
|
||||||
if (text.match("T1")) {
|
if (text.match("T1")) {
|
||||||
item.title = text.match(/T1\s+-\s*(.*)/)[1];
|
item.title = text.match(/T1\s+-\s*(.*)/)[1];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue