#' @title Open
#'
#' @description Open Shell Command
#' @param string What you want to open from the shell
#' @keywords open
#' @export
#' @examples
#' sopen("~/Files/")
#' #' sopen("http://google.com/")
sopen <- function(string){
system(paste("open", string))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.