Christophe Dervieux

Results 1378 comments of Christophe Dervieux

The opened chrome should be killed at the end of each `chrome_print()` call https://github.com/rstudio/pagedown/blob/b93f46fc1ad70182e5dd3d9fc843f752fd12f780/R/chrome.R#L87-L93 You can activate verbose to see if this happens correctly in your case Example: ``` r...

the `on.exit` clause should also run the `kill_chrome` function if the `chrome_print` function errors. As you have links you are not sure that exist, you can create a wrapper function,...

Regarding pdf compression, some R helper also exists thanks to ROpensci great work. See `pdftools::pdf_compress()` which is exporting [`qpdf::pdf_compress()`](https://docs.ropensci.org/qpdf/reference/qpdf.html) from the [**qpdf** package](https://docs.ropensci.org/qpdf/index.html)

How are you incerting the publication within the Rmd ? Can you share a reproducible example of what you want to do ? Thanks

I think that would be a question for **datadrivencv** package. From what I can read in the documentation and a quick look at the code in the package, I believe...

Thanks ! I passed your PR as draft to show that this is a working PR

Thanks a lot for the proof of concept. It is really interesting to know that this is working. Based on what you have done, I want to try to do...

Hi @felipecrp, The idea is really interesting and we want to consider it. We are not just working on **pagedown** right now and we need to discuss between maintainers on...

As I was looking into this for an other issue, I just wanted to add here that the bootstrap rules shown above in https://github.com/rstudio/pagedown/issues/229#issuecomment-867466182 are from boostrap 3. With recent...

Yes currently the List of Table is only built for table written in Markdown in the document with a caption, and thus seen as table by Pandoc. (https://pandoc.org/MANUAL.html#tables) The LOFT...