Files
su2026rwep/_extensions/drwater/quartocn/get-bib.lua
T
2026-05-21 13:37:53 +08:00

18 lines
572 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
--- 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: © 2022Present 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