Nothing
      suggestions<- function(tree,string, useUpper = F){
  vara <- variations(string, useUpper)
  bucket <- c()
  result <- list()
  for(item in vara){
    if(searchWord(tree,item) == T){
      bucket <- unique(append(bucket, item))
    }
  }
  return(bucket)
}
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.