-
Notifications
You must be signed in to change notification settings - Fork 220
Open
Labels
Description
Prework
- Read and agree to the code of conduct and contributing guidelines.
- If there is already a relevant issue, whether open or closed, comment on the existing thread instead of posting a new issue.
Description
When a table with a left-aligned stub is output to RTF, the stub becomes right-aligned.
Reproducible example
exibble |>
gt(
rowname_col = "row",
groupname_col = "group",
row_group_as_column = TRUE
) |>
tab_style(
style = list(cell_text(align = "left")),
locations = list(cells_stub(), cells_row_groups())
) |>
gtsave("test.rtf")