You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: NEWS.md
+21
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,27 @@ rmarkdown 2.29
3
3
4
4
-`find_external_resources()` now correctly detects knitr child document provided with option like `child = c("child.Rmd")` (thanks, @rempsyc, #2574).
5
5
6
+
-`knit_params_ask()` uses a `select` input for parameters which allow multiple selected values. Previously, a `radio` input was incorrectly used when the parameter had a small number of choices.
7
+
8
+
```yaml
9
+
params:
10
+
primaries:
11
+
choices: ["red", "yellow", "blue"]
12
+
multiple: true
13
+
```
14
+
15
+
When `multiple` is not enabled, parameter configuration still uses `radio` when there are fewer than five choices.
16
+
17
+
The `input` parameter field can still be used to force the configuration control.
0 commit comments