Create a tiddlywiki widget from htmlwidget
Examples
library(leaflet)
if (FALSE) { # \dontrun{
content <- paste(sep = "<br/>",
"<b><a href='http://www.samurainoodle.com'>Samurai Noodle</a></b>",
"606 5th Ave. S",
"Seattle, WA 98138"
)
widget <- leaflet() %>% addTiles() %>%
addPopups(-122.327298, 47.597131, content,
options = popupOptions(closeButton = FALSE)
)
tw_widget(widget)
} # }