5f07302b73
rmarkdown 2.10 ========================================================================= - `md_document()` will now handle correctly `preserve_yaml` value for all variants and all pandoc versions (#2190). * with `preserve_yaml = TRUE`, markdown output will keep the YAML metadata block from the Rmd file. * with `preserve_yaml = FALSE`, markdown output will have no YAML metadata block. This fixes a breaking change in Pandoc 2.13 regarding `gfm`, `commonmark` and `commonmark_x` which now supports `yaml_metadata_block` by default (#2118). - New supported syntax for Shiny prerendered documents: you can now use `server: shiny` or `server: type: shiny`. - Ability to inject additional functions into Shiny prerendered server scope using the "server-extras" context. - Fixed the syntax highlighting issue with R's pipe operator `|>` (thanks, @edzer, rstudio/bookdown#1157). rmarkdown 2.9 ========================================================================== - Fix a regression in version 2.8 when a url is used in `css` argument (thanks, @vnijs, #2163). - All HTML dependencies are now correctly supported, included those with only an `href` component but not `file` component in their `src` attribute. Previously, **rmarkdown** would throw the error `'path for html_dependency not provided'` when rendering documents containing HTML dependencies with `href` components (thanks, @crazycapivara, @matthewstrasiotto, #1805, #1948, #2151). - Fix an error thrown with output format using a `file_scope` function (like in **bookdown**) (thanks, @rfaelens, #2149). - Fix an issue with `copy_ressource = TRUE` in `html_document_base` where very long HTML documents were truncated during post processing (thanks, @oliviermeslin, #2145). - When `run()`-ing a `runtime: shiny` document, an extra temp folder will be used in the output path. With the extra temp random folder in the path, predictable output file names may be used. (#2137) - When `run()`-ing a `runtime: shiny` document with a `{bslib}` theme, the global theme value wasn't being restored properly. (#2160) - Floating ToC in `html_document` can now hide headings with unnumbered and unlisted classes (thanks, @atusy, #1993). - Fix prefix handling in R Markdown website's navbar for Fontawesome V5 and compatibility with V4. For icon only available in V5, the full prefix + name should be use, especially with new `fab` prefix (e.g. `fab fa-r-project`). If no prefix is used (e.g `fa-home` instead of `fas fa-home`), the `fa` prefix will be added for V4 compatibility as it has been deprecated in V5. We advice to use the full prefix + name for icons following Fontawesome documentation. (#1994) - `rmarkdown::site_generator()` can hang session waiting for input when the `site` field is not found in the YAML frontmatter of `index.Rmd` (thanks, @kevinushey @mirh, #2043).
33 lines
1.1 KiB
Makefile
33 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.5 2021/09/05 01:50:39 mef Exp $
|
|
|
|
R_PKGNAME= rmarkdown
|
|
R_PKGVER= 2.10
|
|
CATEGORIES= textproc
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Dynamic Documents for R
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
DEPENDS+= R-base64enc>=0.1.3:../../converters/R-base64enc
|
|
DEPENDS+= R-evaluate>=0.13:../../devel/R-evaluate
|
|
DEPENDS+= R-xfun>=0.8:../../devel/R-xfun
|
|
DEPENDS+= R-mime>=0.7:../../mail/R-mime
|
|
DEPENDS+= R-knitr>=1.22:../../print/R-knitr
|
|
DEPENDS+= R-htmltools>=0.3.5:../../textproc/R-htmltools
|
|
DEPENDS+= R-jsonlite>=1.6:../../textproc/R-jsonlite
|
|
DEPENDS+= R-stringr>=1.2.0:../../textproc/R-stringr
|
|
DEPENDS+= R-yaml>=2.1.19:../../textproc/R-yaml
|
|
DEPENDS+= R-tinytex-[0-9]*:../../print/R-tinytex
|
|
DEPENDS+= R-withr>=2.4.2:../../devel/R-withr
|
|
|
|
# Packages suggested but not available: 'tufte', 'dygraphs', 'rsconnect'
|
|
#
|
|
TEST_DEPENDS+= R-base64enc-[0-9]*:../../converters/R-base64enc
|
|
TEST_DEPENDS+= R-fs-[0-9]*:../../devel/R-fs
|
|
TEST_DEPENDS+= R-shiny-[0-9]*:../../www/R-shiny
|
|
TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../mk/bsd.pkg.mk"
|