Skip to content

Commit

Permalink
fixup! feat(packages): Use CSL renderer for BibTeX WIP WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Omikhleia authored and Didier Willis committed Jul 14, 2024
1 parent ab4b3a4 commit 0f5d659
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/bibtex/support/bib2csl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ local function bib2csl (entry)
local date = entry.date and entry.date or toDate(entry.year, entry.month)
csl.issued = date

-- BibLaTeX eventdate [BibTeX date]
csl['event-date'] = entry.eventdate and toDate(entry.eventdate) or date
-- BibLaTeX eventdate [< BibTeX date]
csl['event-date'] = entry.eventdate or date

-- BibLaTeX urldate
csl.accessed = entry.urldate
Expand Down

0 comments on commit 0f5d659

Please sign in to comment.