learnr
learnr copied to clipboard
Interactive Tutorials with R Markdown
If I return a promise in an exercise, it just prints out the fact that the object is a promise. I'd suggest that we could wait on the promise evaluation...
Can we assign Marks for each correct answer and then sums up at the end of quiz?
I'd like to pass the submission record to the grading function, so that the grading function can: 1. **Assess student performance over multiple exercises** (e.g. Has the student gotten three...
@schloerke suggested I create a feature request based on discussion linked below. https://github.com/rstudio/learnr/pull/310#issuecomment-612914345 Perhaps, as @schloerke suggests, the best way to go is to set a DOM value. However, that...
Allow the user pass an argument to the exercise chunk for keybindings (e.g., vimKeyBinding = TRUE or FALSE) or set a user specific option that would activate: ``` editor.setKeyboardHandler('ace/keyboard/vim') ```...
Perhaps I'm overthinking this, but would it be possible to have the students retain a copy of their work (outside of the saved session) via a .Rmd file that mimcs...
Is it possible to have numbered sections as in normal markdown documents? i.e. by setting number_sections under render?
The "Publishing" section of the pkgdown website would be more useful to users if it was framed in terms of the needs of the users of learnr tutorials. We (@mine-cetinkaya-rundel...
It would be useful to automatically indent code like the RStudio editor does. For example ``` ggplot(diamonds, aes(x = color)) + geom_bar() ``` should be ``` ggplot(diamonds, aes(x = color))...
- [ ] use shinyapps.io tutorials within pkgdown tab - [x] auto deploy tutorials with GH Actions - [ ] auto deploy pkgdown website with GH Actions to gh-pages branch...