Skip to content

Commit

Permalink
Fix audiolabs#5: BibTeX import incorrectly parses quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Khalipau committed Aug 4, 2021
1 parent 01dd501 commit 645c596
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/AudioLabs/BibtexParser/BibtexParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ static function cleanup($value) {
$value=str_replace($search,$replace,$value);

$value=rtrim($value, '}, ');
$value = trim($value, '"');
return trim($value);
}
}

0 comments on commit 645c596

Please sign in to comment.