#' Split a file according to \code{/NEWQUESTION}
#'
#' @param txt The text to split, in a vector of length one.
#'
#' @return A vector of character.
#' @importFrom stringr str_trim %>%
#'
split_txt <- function(txt){
txt %>%
strsplit(split="/NEWQUESTION") %>%
unlist() %>%
str_trim()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.