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 = {
20822082 is_format = format .isFormat ,
20832083
20842084 cite_method = function ()
2085- local citeMethod = param (' cite-method' , ' citeproc ' )
2085+ local citeMethod = param (' cite-method' , nil )
20862086 return citeMethod
20872087 end ,
20882088 pdf_engine = function ()
Original file line number Diff line number Diff line change 11function Pandoc (doc )
22 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 ' ))
44 return doc
55end
You can’t perform that action at this time.
0 commit comments