Nothing
#' Replace backslash with forward slash
#'
#' This function is helpful for Windows systems, where paths are usually expressed with left slashes, whereas \code{R} requires right slashes.
#'
#' @param x A string.
#'
#' @return Character.
#'
#' @examples
#'
#' forwardSlash("C:\\ecology\\main project")
#'
#' @export
forwardSlash <- function(x) gsub("\\\\", "/", x)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.