File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/resources/pandoc/datadir
tests/docs/smoke-all/2025/03/27 Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2082,7 +2082,7 @@ quarto = {
2082
2082
is_format = format .isFormat ,
2083
2083
2084
2084
cite_method = function ()
2085
- local citeMethod = param (' cite-method' , ' citeproc ' )
2085
+ local citeMethod = param (' cite-method' , nil )
2086
2086
return citeMethod
2087
2087
end ,
2088
2088
pdf_engine = function ()
Original file line number Diff line number Diff line change 1
1
function Pandoc (doc )
2
2
assert (quarto .doc .pdf_engine () == " xelatex" , " `quarto.doc.pdf_engine()` should be xelatex but is instead: " .. quarto .doc .pdf_engine ())
3
- assert (quarto .doc .cite_method () == " natbib " , " `quarto.doc.cite_method()` should return natbib but return instead: " .. quarto .doc .cite_method ())
3
+ assert (quarto .doc .cite_method () == nil , " `quarto.doc.cite_method()` should return natbib but return instead: " .. ( quarto .doc .cite_method () or ' unset ' ))
4
4
return doc
5
5
end
You can’t perform that action at this time.
0 commit comments