You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe I am missing something obvious, but this code results in an error (version 0.6.2):
pander(list(x = as.Date("2018-11-05")))
The problem is caused by pander:::pander.Date which passes all dots arguments to pander:::pandoc.date which passes the args further to pander:::pandoc.date.return which does not have ... in its arguments. Note that pander.list contains this line:
Maybe I am missing something obvious, but this code results in an error (version 0.6.2):
The problem is caused by
pander:::pander.Date
which passes all dots arguments topander:::pandoc.date
which passes the args further topander:::pandoc.date.return
which does not have...
in its arguments. Note thatpander.list
contains this line:, and because of the above, the argument
indent
is passed topander:::pandoc.date.return
, which of course fails to process it.The text was updated successfully, but these errors were encountered: