We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84fc369 commit 3650094Copy full SHA for 3650094
DESCRIPTION
@@ -31,7 +31,7 @@ Imports:
31
tools,
32
utils,
33
xfun,
34
- yaml
+ yaml (>= 2.3.10)
35
Suggests:
36
bslib,
37
callr,
R/utils.R
@@ -6,12 +6,7 @@ relative_to_wd <- function(path) {
6
# Specific YAML handlers
7
# as quarto expects YAML 1.2 and yaml R package supports 1.1
8
yaml_handlers <- list(
9
- # Handle yes/no from 1.1 to 1.2
10
- # https://github.com/vubiostat/r-yaml/issues/131
11
- logical = function(x) {
12
- value <- ifelse(x, "true", "false")
13
- structure(value, class = "verbatim")
14
- }
+ logical = yaml::verbatim_logical
15
)
16
17
#' @importFrom yaml as.yaml
0 commit comments