Bulma study case: Install Bulma dependencies

  1. Go to the jsdelivr website and find the correct repository.

  2. 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)
}