So I have the following R chunk in a rmarkdown file:
library(tidyverse)
tibble(" " = '<img src= "img/logos/bos.png" alt="Boston Celtics">', Team = "Boston Celtics", Wins = 82)
I want to display it as a table, which I can do with gt::gt()
or kableExtra::kable()
, I have no real preference. Obviously, the first column will be printed as text rather than html code.
Is there an easy way to have it evaluated as html code?