Release Notes
0.0.0-dev.2: ???? (??-??-????)
Features
assign
allows for various Div to be set to display or be hidden based on the underlying Quarto Profile..direction
: shown in the assignment, but not the solution or rubric documents..sol
: shown in the solution and rubric documents..rubric
: shown only in the rubric version of the solutions.
:::{.direction}1. Create a vector of containing 5 different integer numbers.
:::
:::{.rubric}
Points awarded:
- +1 for full points
- +0.5 for vector with 5 observations or vector with only integers but not exactly 5 observations.
:::
:::{.sol}```{r}
x <- c(1L:5L)
# Or:
y <- c(1L, -4L, -5L, 42L, 55L)
```
:::
Changes
- Added italicized
*Solution.*
inside of Div’s with.sol
(#3, thanks @d-morrison)