compatRowNames <- function(row.names) {
  if (is.null(row.names)) {
    row.names <- FALSE
  } else if (is.numeric(row.names)) {
    warning_once("RSQLite: Passing numeric values to row.names is deprecated. Pass a logical or a column name.")
    row.names <- as.logical(row.names)
  }
  row.names
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.