From 61b2d57f61d325403eaae86a06c46ff17f098ee6 Mon Sep 17 00:00:00 2001 From: Jonathan Harker Date: Sat, 29 Aug 2026 22:52:56 +1200 Subject: [PATCH] DOI lowercase fix, 24 August 2026 --- module_citeq.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module_citeq.lua b/module_citeq.lua index ff15e6b..0464a85 100644 --- a/module_citeq.lua +++ b/module_citeq.lua @@ -383,6 +383,8 @@ local function _cite_q (citeq_args) end end + citeq_args.doi = citeq_args.doi and citeq_args.doi:lower() or nil; -- force |doi= value to be lower case + citeq_args.others = citeq_args.others or table.concat(oth, ". ") if citeq_args.others == "" then citeq_args.others = nil