Christophe Dervieux

Results 1378 comments of Christophe Dervieux

Instead of adding a new issue I am posting here the idea. We could also leverage a `workflow_dispatch` input so that we can run any branch in **knitr** repo against...

Hi, Can you provide an example of what you want to achieve ? I am willing to help but I am not sure of the desired output. The better is...

Thanks a lot ! This is a very helpful reprex. I understand now what you mean by modular. I get why it could be interesting to not have all the...

For reference, the issue mentioned above is : https://github.com/rstudio/rmarkdown/issues/727 Some improvement needs to be done in **rmarkdown** regarding math support, to follow Pandoc updates on this. It is possible that...

I took the opportunity to update the workflows also to latest version of r-lib/actions following what I usually use. No big deal, I was just going through some update on...

As a workaround, you can also try exact match if you know the mixed format ``` r lubridate::parse_date_time(c("2101, Apr 10", "10/04/2101"), orders = c("%Y, %b %d", "%d/%m/%Y"), exact = TRUE,...

I don't know why but I don't get the NA when I try to reproduce ``` r library(lubridate) #> #> Attachement du package : 'lubridate' #> The following object is...

I am also on windows but it is working fine ``` r date date date.1 #> 1 18/08 2018-08-01 #> 2 17/11 2017-11-01 #> 3 18/08 2018-08-01 #> 4 18/05...

Here is the result ```r > lubridate:::.get_locale_regs("Japanese_Japan.932") $alpha_flex b "((?1|2|3|4|5|6|7|8|9|10|11|12)|(?1\\?|2\\?|3\\?|4\\?|5\\?|6\\?|7\\?|8\\?|9\\?|10\\?|11\\?|12\\?))(?![[:alpha:]])" B "(?1\\?|2\\?|3\\?|4\\?|5\\?|6\\?|7\\?|8\\?|9\\?|10\\?|11\\?|12\\?)(?![[:alpha:]])" a "((?\\?)|(?\\?\\?\\?))(?![[:alpha:]])" A "(?\\?\\?\\?)(?![[:alpha:]])" Ou "(?Z)(?![[:alpha:]])" p "(?\\?\\?)(?![[:alpha:]])" $num_flex d "(?[012]?[1-9]|3[01]|[12]0)(?!\\d)" q "(?[0]?[1-4])(?!\\d)" H "(?2[0-4]|[01]?\\d)(?!\\d)" h "(?2[0-4]|[01]?\\d)(?!\\d)" I...