Given an repository on GitHub, retrieve all the bookdown chapter information for the Github page if it exists. Currently only public repositories are supported.

Usage,
get_learning_obj(url, prompt = "This chapter will demonstrate how to\\:")

Arguments

url

a url to a bookdown chapter e.g. "https://jhudatascience.org/Documentation_and_Usability/what-does-good-documentation-look-like.html"

prompt

A string character that is a prompt lead in to the Learning objectives and should be deleted.

Value

find learning objectives for a particular chapter

Examples

if (FALSE) {

# Declare chapter URL
url <- "https://jhudatascience.org/Documentation_and_Usability/other-helpful-features.html"

get_learning_obj(url)
}