read_all_html: read all HTML files in a folder

View source: R/utils-aggregate.R

read_all_htmlR Documentation

read all HTML files in a folder

Description

read all HTML files in a folder

Usage

read_all_html(path)

Arguments

path

the path to a folder with HTML files

Value

a nested list of html_documents from xml2::read_html() with two top-level elements:

  • ⁠$learner⁠: contains all of the html pages in the learner view

  • ⁠$instructor⁠: all of the pages in the instructor view

  • ⁠$paths⁠: the absolute paths for the pages

Examples

tmpdir <- tempfile()
on.exit(fs::dir_delete(tmpdir))
fs::dir_create(tmpdir)
fs::dir_create(fs::path(tmpdir, "instructor"))
writeLines("<p>Instructor</p>", fs::path(tmpdir, "instructor", "index.html"))
writeLines("<p>Learner</p>", fs::path(tmpdir, "index.html"))
sandpaper:::read_all_html(tmpdir)


zkamvar/sandpaper documentation built on April 21, 2024, 1:17 a.m.