Bulma study case: Install Bulma dependencies
Go to the jsdelivr website and find the correct repository.
The function
create_dependency
will take care of creating the next step for us:
library(htmltools)
bulma_deps <- htmlDependency(
name = ...,
version = ...,
src = c(href = ...),
stylesheet = ...
)
add_bulma_deps <- function(tag) {
tagList(..., bulma_deps)
}