Results 15 comments of Samuel Aroney

@johanneskoester Is there something blocking this pull-request?

Presence of W, Y, R 'nucleotides' caused this for me.

Another workaround (similar to https://github.com/rstudio/gt/issues/97#issuecomment-469751769). Produce html output and then run webshot manually. ```r library(gt) library(webshot) table gt::gt() gt::gtsave(table,"table.html") webshot::webshot(url = "table.html", file = "table.png") ```

This would also help with https://github.com/pola-rs/polars/issues/7514