Prework
Description
exibble |>
gt() |>
text_replace(
"u",
"xx",
locations = cells_column_labels()
) |>
text_replace(
"ux",
"xx",
locations = cells_column_labels()
)
For now, I am okay with using the workaround with text_case_match().
exibble |>
gt() |>
text_case_match(
.replace = "partial",
.locations = cells_column_labels(),
"u" ~ "xx",
"ux" ~ "xx",
)
Reproducible example
Expected result
No list() shown on the column labels.
Session info
gt 0.11.0.9000 (reproducible in gt 0.10.1 also)
Prework
Description
For now, I am okay with using the workaround with
text_case_match().Reproducible example
Expected result
No
list()shown on the column labels.Session info
gt 0.11.0.9000 (reproducible in gt 0.10.1 also)