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
#' This is a wrapper function around \code{pander} but instead of printing to \code{stdout}, this function returns a character vector of the captured lines.
112
112
#' @param ... everything passed to \code{pander}
113
113
#' @export pander.return
114
114
#' @usage pander.return(...)
115
115
#' @seealso pander
116
-
pander.return<-function(...)
116
+
pander.return<-function(...) {
117
+
.Deprecated('pander_return')
118
+
capture.output(pander(...))
119
+
}
120
+
121
+
122
+
#' Pander and capture output
123
+
#'
124
+
#' This is a wrapper function around \code{pander} but instead of printing to \code{stdout}, this function returns a character vector of the captured lines.
0 commit comments