Christophe Dervieux
Christophe Dervieux
@DunLug where are you on this PR ? I see that there is some unchecked boxes on your todolist. Do you plan on finishing it ? In the meantime, if...
That is ok. Thank you ! We hope you'll find time to finish it. Cheers!
About the special characters in labels, this is related to other issues raised in the past with that: https://github.com/rstudio/bookdown/issues/839 https://github.com/rstudio/bookdown/issues/157 https://github.com/rstudio/bookdown/issues/941 https://github.com/rstudio/bookdown/issues/867 https://github.com/rstudio/bookdown/issues/406 https://github.com/rstudio/bookdown/issues/194 https://github.com/rstudio/bookdown/issues/336 This is indeed documented (in...
This error comes from the fact that the script you linked to uses all the unexported function from **blogdown** One of them is `blogdown:::output_file` which now only take a `file`...
This another internal function that has changed ```diff @@ -217,9 +217,9 @@ process_markdown = function(x, res) { # are used extensively in a website) # example values of arguments: x...
Yes currently `bookdown::serve_book()` only allow to preview the first HTML book format found in `_output.yaml` among a list of support own **bookdown** format https://github.com/rstudio/bookdown/blob/f7d062298ef1a209e18cf422f2327780d647f3d3/R/utils.R#L374 https://github.com/rstudio/bookdown/blob/f7d062298ef1a209e18cf422f2327780d647f3d3/R/utils.R#L399-L406 So you would need to...
Maybe **pagedown** should make those formats book's format for **bookdown** ? There is a few thing that needs to be added I think so that it works as expected by...
Some thoughts: * This would be in favor of rethinking the cross referencing in bookdown to maybe do it using a Pandoc Lua filter to deal with several output format....
More thoughts: Afterall the following syntax could be the simpler to implement ``` $$ math $$ {#eq:label} ``` using lua filter maybe ```` ❯ pandoc -t native $$ math $$...
> move this chunk of code outside individual templates: What do you think of ? These are pandoc templates and they can't inherit from each others. (at least not since...