yonicd

Results 170 comments of yonicd

@leungi you can use [snapper](https://github.com/yonicd/snapper) it gets around the need for selenium.

@jeroen would converting the content to [raw](https://github.com/jeroen/curl/blob/79a9305081742dfbd2f4e91848a1898e45694eba/R/email.R#L92) do anything to the formating? (that sounds implausible) ```r library(dplyr) library(gt) df % mutate( Total = `Non Risky` + Risky, `At Risk Percentage`...

It may be that the layers of svg are getting ignored. I had a similar issue when snapping leaflets. This was my solution there: ```r snapper::preview_button( ui = '#myMap', opts...

this works fine for me ```r library(shiny) library(DiagrammeR) library(snapper) ui = fluidPage( snapper::load_snapper(), snapper::preview_button( ui = '#diagram', opts = snapper::config(scale = 1) ), grVizOutput('diagram'), snapper::snapper_div() ) server = function(input, output)...

these look like similar issues https://github.com/niklasvh/html2canvas/issues/1311 https://github.com/niklasvh/html2canvas/issues/95

I tried that before the full path, both didn't work. On Sat, Jan 28, 2017 at 1:22 PM Ian Lyttle wrote: > When using the src attribute, you have to...

;). Didn't try that yet. On Sat, Jan 28, 2017 at 1:31 PM Ian Lyttle wrote: > I have not had enough coffee yet today - I did not see...

that worked. is there a way to turn off the grey background or set the opacity to 1 for the images?

A little late to the party... how about this for a solution? https://gist.github.com/yonicd/7828d9ee16b103ca3923ce94eb3f2fe6

is there an example of an implementation of `batchtools_custom`?