Remove all values between "<>", which are typically HTML tags.
strip_html(dat, ignore = NULL, trim_space = TRUE)
a data.frame.
a character vector containing values to ignore while stripping HTML tags. For instance, if you have <keep me> and <me too> in your column names, add ignore = c("keep me", "me too").
logical, if TRUE trim extra white space
a data.frame object.
if (FALSE) {
fetch_survey_obj(1234567890) %>%
parse_survey() %>%
strip_html()
}