add_meta | R Documentation |
<meta>
tags to a Dash appAdd <meta>
tags to a Dash app
add_meta(app, meta)
app |
A dash application created with |
meta |
A single meta tag or a list of meta tags. Each meta tag is a named list with two elements representing a meta tag. See examples below. |
app <- dash_app()
# Add a single meta tag
app %>% add_meta(list(name = "description", content = "My App"))
# Add multiple meta tags
app %>% add_meta(list(
list(name = "keywords", content = "dash, analysis, graphs"),
list(name = "viewport", content = "width=device-width, initial-scale=1.0")
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.