'species.name' <-
function(str)
{
str<-gsub("[ ]", "", str)
str<-gsub("[;]","",str)
str<-gsub(":[0-9.0-9e-]*","",str)
str<-gsub("#[0-9.0-9e-]*","",str)
str<-gsub(")[0-9.0-9e-]*","",str)
str<-gsub("[()]","",str)
str<-gsub("[ ]", "", str)
name<-sort(unlist(strsplit(str,split=",")))
return(name)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.