# utility functions
#' Is file a MS Word .docx file
#'
file_is_docx <- function(f)
{
ext <- tools::file_ext(f)
tolower(ext) == "docx"
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.