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