BibTeX author delimiter ("and") is now case insensitive on import.
This commit is contained in:
parent
c0b8f38620
commit
702b747303
1 changed files with 1 additions and 1 deletions
|
@ -1557,7 +1557,7 @@ function processField(item, field, value) {
|
|||
item.publicationTitle = value;
|
||||
} else if(field == "author" || field == "editor") {
|
||||
// parse authors/editors
|
||||
var names = value.split(" and ");
|
||||
var names = value.split(/ and /i); // now case insensitive
|
||||
for each(var name in names) {
|
||||
item.creators.push(Zotero.Utilities.cleanAuthor(name, field,
|
||||
(name.indexOf(",") != -1)));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue