use_external_js_file | R Documentation |
These functions download files from external sources and put them inside the inst/app/www
directory.
The use_internal_
functions will copy internal files, while use_external_
will try to download them
from a remote location.
use_external_js_file(
url,
name = NULL,
pkg = get_golem_wd(),
dir = "inst/app/www",
open = FALSE,
dir_create = TRUE
)
use_external_css_file(
url,
name = NULL,
pkg = get_golem_wd(),
dir = "inst/app/www",
open = FALSE,
dir_create = TRUE
)
use_external_html_template(
url,
name = "template.html",
pkg = get_golem_wd(),
dir = "inst/app/www",
open = FALSE,
dir_create = TRUE
)
use_external_file(
url,
name = NULL,
pkg = get_golem_wd(),
dir = "inst/app/www",
open = FALSE,
dir_create = TRUE
)
use_internal_js_file(
path,
name = NULL,
pkg = get_golem_wd(),
dir = "inst/app/www",
open = FALSE,
dir_create = TRUE
)
use_internal_css_file(
path,
name = NULL,
pkg = get_golem_wd(),
dir = "inst/app/www",
open = FALSE,
dir_create = TRUE
)
use_internal_html_template(
path,
name = "template.html",
pkg = get_golem_wd(),
dir = "inst/app/www",
open = FALSE,
dir_create = TRUE
)
use_internal_file(
path,
name = NULL,
pkg = get_golem_wd(),
dir = "inst/app/www",
open = FALSE,
dir_create = TRUE
)
url |
String representation of URL for the file to be downloaded |
name |
The name of the module. |
pkg |
Path to the root of the package. Default is |
dir |
Path to the dir where the file while be created. |
open |
Should the created file be opened? |
dir_create |
Creates the directory if it doesn't exist, default is |
path |
String representation of the local path for the file to be implemented (use_file only) |
The path to the file, invisibly.
See ?htmltools::htmlTemplate
and https://shiny.rstudio.com/articles/templates.html
for more information about htmlTemplate
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.