Check the formatting of all quizzes in a given directory.
check_quizzes(
quiz_dir = "quizzes",
write_report = TRUE,
verbose = TRUE,
ignore_coursera = TRUE
)
A path to a directory full of quizzes that should all be checked with [ottrpal::check_all_quizzes].
TRUE/FALSE save warning report to a CSV file?
print diagnostic messages
Coursera doesn't like `!` or `:` in the quizzes. Do not convert quizzes to coursera and ignore ! and : in question prompts that would not be allowed in Leanpub quizzes when converted to a Coursera quiz. Default is to ignore Coursera compatibility
A list checks performed on each quiz
if (FALSE) {
## Make a temporary quiz directory
quiz_dir <- dirname(good_quiz_path())
## Now check the quizzes in that directory
all_quiz_results <- check_quizzes(quiz_dir = quiz_dir)
}