Parse quiz into a data.frame
parse_quiz_df(quiz_lines, remove_tags = FALSE)
A data frame containing a type column which indicates what type of line each is.
if (FALSE) { # \dontrun{
# Use readLines() to read in a quiz
quiz_path <- good_quiz_path()
quiz_lines <- readLines(quiz_path)
# Can use this to parse the quiz into a data.frame
quiz_df <- parse_quiz_df(quiz_lines)
} # }