Nothing
## annotate() can use a single annotator or an annotator pipeline or
## something coercible to this, such as a list of annotators, and
## recursively calls the given annotators and merges annotations.
annotate <-
function(s, f, a = Annotation())
{
s <- as.String(s)
for(e in as.Annotator_Pipeline(f))
a <- merge(a, e(s, a))
a
}
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.