Skip to content

Commit

Permalink
Do not use "eprint" as a type (#23)
Browse files Browse the repository at this point in the history
Closes #22
  • Loading branch information
goerz authored Oct 17, 2023
1 parent 3c39efa commit c9c8efe
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/bibtex.jl
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ Make an entry if the entry follows the BibTeX guidelines. Throw an error otherwi
"""
function make_bibtex_entry(id, fields; check=:error)
# @info id fields
"eprint" keys(fields) && (fields["_type"] = "eprint")
fields = Dict(lowercase(k) => v for (k, v) in fields) # lowercase tag names
errors = check_entry(fields, check, id)
if length(errors) > 0 && check [:error, :warn]
Expand Down

0 comments on commit c9c8efe

Please sign in to comment.