Is it possible to highlight specific words in a column within the kable function?
data frame:
tb <- tibble(text=c("this image is awesome", "this image is awful"), likes=c(34,8))
tb
# A tibble: 2 x 2
text likes
<chr> <dbl>
1 this image is awesome 34
2 this image is awful 8
within a shinyapp i placed a interactive function in which a user can search for a specific word in a text corpus. if a user is looking for "awesome", i want only the word awesome in a html table to be highlighted.