tab_html <-
gtcars |>
dplyr::select(mfr, model, msrp) |>
dplyr::slice(1:5) |>
gt() |>
tab_header(
title = md("Data listing from **gtcars**"),
subtitle = md("`gtcars` is an R dataset")
) |>
as_raw_html()The as_raw_html() function
Use gtcars to create a gt table. Add a header and then export as HTML code with inlined CSS styles.
What’s returned is a single-element vector containing the HTML for the table. It has only the <table>...</table> part so it’s not a complete HTML document but rather an HTML fragment.