#' @include grid-rowwise.R
#' @rdname grid_rowwise
#' @aliases grid_colwise
#' @export
grid_colwise <- function(..., rows = character(0L)) {
n <- n_item(...) - sum(lengths(strsplit(rows, " +")))
rows <- c(rows, rep("auto", n * (n > 0)))
grid_layout(..., rows = rows)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.