Wraps tags to be included in the page head when passed to hx_page().
Value
A list with class hx_head, to be passed to hx_page().
Examples
hx_head(title = "My app")
#> [[1]]
#> <title>My app</title>
#>
#> attr(,"class")
#> [1] "hx_head"
hx_head(
title = "My app",
tags$link(rel = "stylesheet", href = "/style.css")
)
#> [[1]]
#> <link rel="stylesheet" href="/style.css"/>
#>
#> [[2]]
#> <title>My app</title>
#>
#> attr(,"class")
#> [1] "hx_head"
