Nothing
texify <- function(x) {
# Based on knitr function
x <- gsub("\\\\", "\\\\textbackslash", x)
x <- gsub("([#$%&_{}])", "\\\\\\1", x)
x <- gsub("\\\\textbackslash", "\\\\textbackslash{}", x)
x <- gsub("~", "\\\\textasciitilde{}", x)
x <- gsub("\\^", "\\\\textasciicircum{}", x)
x
}
htmlify <- function (x)
# Taken from the tools package
{
fsub <- function(pattern, replacement, x)
gsub(pattern,
replacement,
x,
fixed = TRUE,
useBytes = TRUE)
x <- fsub("&", "&", x)
x <- fsub("---", "—", x)
x <- fsub("--", "–", x)
x <- fsub("``", "“", x)
x <- fsub("''", "”", x)
x <- gsub("`([^']+)'",
"‘\\1’",
x,
perl = TRUE,
useBytes = TRUE)
x <- fsub("`", "'", x)
x <- fsub("<", "<", x)
x <- fsub(">", ">", x)
x <- fsub("\"\\{\"", "\"{\"", x)
x <- fsub("\"", """, x)
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.