#' Set of predefined functions for diffr()
#'
#' Set of functions to determine which lines of text to be ignored.
#'
ignoreLinesFunctions <- list(
idep = function(text){
pattern <- "^#\u00A7#"
grepl(pattern, text) & grepl("", text)
},
empty = function(text){
"" == text
},
none = function(text){
rep(FALSE, length(text))
}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.