R/condformat_render.R
print.condformat_tbl.RdPrints the data frame in an HTML page and shows it.
# S3 method for condformat_tbl
print(x, ..., paginate = TRUE)A condformat_tbl object
Arguments passed on to htmltools::html_print
backgroundBackground color for web page
viewerA function to be called with the URL or path to the generated
HTML page. Can be NULL, in which case no viewer will be invoked.
A logical value. If TRUE the printing will be paginated
the value returned by htmlTable::htmlTable()
data(iris)
if (FALSE) {
print(condformat(iris[1:5,]))
}