Nothing
read_tag_dictionary <-
function(dict) {
it <- dict$iterator()
tags <- words <- list()
while(it$hasNext()) {
w <- .jcall(it, "Ljava/lang/Object;", "next")
words <- c(words, list(.jsimplify(w)))
tags <- c(tags, list(dict$getTags(w)))
}
names(tags) <- unlist(words)
tags
}
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.