parsePriors = function(priorText){
# separate based on <-
rhs = strsplit(x = priorText, split = " <- ")[[1]][2]
p = eval(parse(text = rhs))
# separate based on parentheses
return(p)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.