I'd like to right align the rowname_col
but it doesn't look like you can apply cols_align
to rownames?
tibble(
one = c("Long names", "Other Name", "Name | Name"),
two = 1:3
) %>% gt(rowname_col = "one") %>%
cols_align(align = "right", columns = vars(one))