18 lines
572 B
Lua
18 lines
572 B
Lua
--- Get a BibTeX/BibLaTeX or CSL JSON file cited from a large database
|
||
--- Source: https://pandoc.org/lua-filters.html#pandoc.utils.references
|
||
--- https://fosstodon.org/@pandoc/109549882954402931
|
||
|
||
--- Copyright: © 2022–Present Albert Krewinkel
|
||
--- License: MIT License
|
||
|
||
-- *Note*: For BibLaTeX, it is needed to change the following entry name:
|
||
-- - journal -> journaltitle
|
||
-- - address -> location
|
||
-- - publisher -> institution (only for thesis)
|
||
|
||
function Pandoc(doc)
|
||
doc.meta.references = pandoc.utils.references(doc)
|
||
doc.meta.bibliography = nil
|
||
return doc
|
||
end
|