79248575

Date: 2024-12-03 17:14:10
Score: 2
Natty:
Report link

how about adding a column with searchable spanish (without accents):

library(tibble)
library(stringi)
library(gt)


# Add a column without accents
days_of_week <- days_of_week %>%
  mutate(spanish_searchable = stri_trans_general(spanish, "Latin-ASCII"))

days_of_week |> 
  gt() |> 
  opt_interactive(use_search = TRUE)

output

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): how
  • Low reputation (1):
Posted by: G-Man