html()
Use the exibble dataset to create a gt table. When adding a title through tab_header(), we’ll use the html() helper to signify to gt that we’re using HTML formatting.
exibble
tab_header()
exibble |> dplyr::select(currency, char) |> gt() |> tab_header(title = html("<em>HTML</em>"))