To activate the use of tooltips in your page, you will need to call
the use_bs_tooltip() function somewhere.
The verb embed is used to signify that you are embedding information
into a tag. This implies that you can embed, at most, one "thing"
into a particular tag. You should not, for example, expect to embed both a tooltip
and a popover into a tag.
# NOT RUN {library("htmltools")
tags$button(type = "button", class = "btn btn-default", "I'm a button") %>%
bs_embed_tooltip(title = "I'm a tooltip")
# }